Original Model Train Test Split, Boxplot

set.seed(10035)
remove_singularities <- function(dataset, gene_name){
  dataset_copy <- dataset
  item <- paste(gene_name, "~.", sep="")
  full_formula <- as.formula(item)
  fit <- lm(full_formula, data=dataset)
  singularities <- attributes(alias(fit)$Complete)$dimnames[[1]]
  for (singularity in singularities){
    dataset_copy[singularity] <- NULL
  }
  return(dataset_copy)
}
read_in_pruned_datasets_for_gene_0.8 <- function(gene_name, path){
  full_path0.8 <- paste(path, gene_name, "_for_r_0.8.txt", sep="")
  Data0.8 <- read.table(full_path0.8, header=TRUE, sep=',')
  Data0.8 <- remove_singularities(Data0.8, gene_name)
  return(Data0.8)
}
#install.packages("DAAG")
#install.packages("caret")
#install.packages("lmtest")
#install.packages("MASS")
#install.packages("car")
#install.packages("reshape")
#install.packages("plotmo")
#install.packages("olsrr")
library(caret)
## Loading required package: lattice
## Loading required package: ggplot2
library(lmtest)
## Loading required package: zoo
## 
## Attaching package: 'zoo'
## The following objects are masked from 'package:base':
## 
##     as.Date, as.Date.numeric
library(MASS)
library(car)
## Loading required package: carData
library(reshape)
library(plotmo)
## Loading required package: Formula
## Loading required package: plotrix
## Loading required package: TeachingDemos
library(olsrr)
## 
## Attaching package: 'olsrr'
## The following object is masked from 'package:MASS':
## 
##     cement
## The following object is masked from 'package:datasets':
## 
##     rivers
library(DAAG)
## 
## Attaching package: 'DAAG'
## The following object is masked from 'package:car':
## 
##     vif
## The following object is masked from 'package:MASS':
## 
##     hills
gene_data <- read_in_pruned_datasets_for_gene_0.8("ENSG00000142794", "D:\\Project\\GitStash\\Applied_regression_project\\")
gene_data <- as.data.frame(gene_data)
hist(gene_data[["ENSG00000142794"]], main="ENSG0000014279 Gene Expression Distribution", ylab="Frequency", xlab="Gene Expression Value")

boxplot(gene_data[["ENSG00000142794"]], main="Boxplot of ENSG0000014279 expression", ylab="Expression value", xlab="Boxplot")

# We notice that the Expression Data is skewed to the right.
trainIndex <- createDataPartition(gene_data[["ENSG00000142794"]], p=.8, list = FALSE, times=1)

# We do test train split and explicitly create the data partition indexs 
# because of the difference seed values produce in different R versions
gene_data <- gene_data[train_index,]
gene_test <- gene_data[-train_index,]
#We do a train validation split here. 

First Model Diagnostics

model <- lm(ENSG00000142794~., data=gene_data)
summary(model)
## 
## Call:
## lm(formula = ENSG00000142794 ~ ., data = gene_data)
## 
## Residuals:
##     Min      1Q  Median      3Q     Max 
## -1.4584 -0.3311 -0.0545  0.2781  3.2295 
## 
## Coefficients:
##               Estimate Std. Error t value Pr(>|t|)  
## (Intercept)  1.0773438  0.8375846   1.286   0.1996  
## rs12734589  -0.2426399  0.3650244  -0.665   0.5069  
## rs2004380    0.1102502  1.0093512   0.109   0.9131  
## rs10737456  -0.1014757  0.2853902  -0.356   0.7225  
## rs10799692   0.0890538  0.5131390   0.174   0.8624  
## rs3820296   -0.2600382  0.3517204  -0.739   0.4604  
## rs10916988   0.1944314  0.1744793   1.114   0.2663  
## rs1976403    0.5034704  0.4112980   1.224   0.2222  
## rs1780324    0.4284627  0.2894724   1.480   0.1402  
## rs4654753   -0.4658774  0.4593801  -1.014   0.3116  
## rs79760554   0.0278784  0.1362679   0.205   0.8381  
## rs12729540  -0.0386049  0.2499062  -0.154   0.8774  
## rs12043777  -0.1137017  0.1445647  -0.787   0.4324  
## rs10799702   0.1519789  0.2212533   0.687   0.4928  
## rs4061838   -0.1683068  0.1846747  -0.911   0.3630  
## rs7545635    0.0693701  0.2444405   0.284   0.7768  
## rs4654946   -0.0593146  0.5275433  -0.112   0.9106  
## rs2047653   -0.0215676  0.4805840  -0.045   0.9642  
## rs4079441    0.0160076  0.5254259   0.030   0.9757  
## rs12034222   0.1939562  0.1212573   1.600   0.1111  
## rs3820292   -0.0718418  0.1268148  -0.567   0.5716  
## rs75417796   0.1798876  0.3004644   0.599   0.5500  
## rs7541779    0.0238033  0.2965717   0.080   0.9361  
## rs75417790   0.0475355  0.2394576   0.199   0.8428  
## rs10799691  -0.0251948  0.2950647  -0.085   0.9320  
## rs1971328    0.2014015  0.2281684   0.883   0.3783  
## rs12744514   0.6974904  0.5034685   1.385   0.1673  
## rs41310392  -0.4924510  0.3108441  -1.584   0.1145  
## rs75056920   0.0976996  0.1316812   0.742   0.4589  
## rs1697421   -0.2674773  0.2314293  -1.156   0.2490  
## rs146767219  0.0388611  0.1074221   0.362   0.7179  
## rs12132412   0.0488435  0.1550308   0.315   0.7530  
## rs112985962 -0.1747530  0.6483509  -0.270   0.7878  
## rs147900768  0.1793372  0.2227159   0.805   0.4215  
## rs1814737   -0.6478764  0.7304950  -0.887   0.3760  
## rs56286426  -0.0108865  0.1338131  -0.081   0.9352  
## rs17420195   1.2040546  0.9058701   1.329   0.1851  
## rs113548640  0.1619209  0.3515875   0.461   0.6456  
## rs146564096 -0.1459169  0.1311852  -1.112   0.2672  
## rs10916989   0.0113086  0.2306912   0.049   0.9609  
## rs150401191  0.0091174  0.6004537   0.015   0.9879  
## rs3010180   -0.1346392  0.1276371  -1.055   0.2926  
## rs78885464   0.1262377  0.1141166   1.106   0.2698  
## rs6694671    0.0356021  0.3917338   0.091   0.9277  
## rs144522615 -0.0696422  0.1296253  -0.537   0.5916  
## rs61775934  -0.1628478  0.4170355  -0.390   0.6965  
## rs3010181    0.1408603  0.1079256   1.305   0.1931  
## rs1780323   -0.0641018  0.1257974  -0.510   0.6108  
## rs61778366  -0.3494258  0.2960935  -1.180   0.2392  
## rs79659018   0.0159360  0.1274369   0.125   0.9006  
## rs10737458  -0.3630167  0.4858445  -0.747   0.4557  
## rs11584744   0.5002325  0.3351833   1.492   0.1369  
## rs201590042 -0.0149337  0.1038923  -0.144   0.8858  
## rs1566524   -0.1873926  0.4552565  -0.412   0.6810  
## rs61775950   0.0831508  0.0978564   0.850   0.3964  
## rs144443608  0.0877285  0.1013082   0.866   0.3874  
## rs10916986   0.3573069  0.2995042   1.193   0.2341  
## rs904927     0.1363907  0.3373079   0.404   0.6863  
## rs190849739  0.0054703  0.1267022   0.043   0.9656  
## rs143561157  0.1553284  0.1161436   1.337   0.1824  
## rs12740648  -0.0110182  0.1509227  -0.073   0.9419  
## rs12118362   0.0390582  0.1495256   0.261   0.7942  
## rs1809914   -0.4849652  0.2207155  -2.197   0.0290 *
## rs41310412   0.0082098  0.2822820   0.029   0.9768  
## rs6423191    0.0007244  0.1983363   0.004   0.9971  
## rs140609058 -0.2737547  0.3502827  -0.782   0.4353  
## rs7555005   -0.1160461  0.2698248  -0.430   0.6675  
## rs71512991  -0.0922331  0.1062848  -0.868   0.3864  
## rs139043162 -0.0988816  0.3860193  -0.256   0.7981  
## rs2800935   -0.0890408  0.1292364  -0.689   0.4915  
## rs113324018  0.1567611  0.2392068   0.655   0.5129  
## rs904928     0.0440956  0.1553133   0.284   0.7767  
## rs7533048    0.1191272  0.2959662   0.403   0.6877  
## rs12239666  -0.1800842  0.2227685  -0.808   0.4197  
## rs972662     0.1707553  0.2390314   0.714   0.4757  
## rs9726624   -0.0631679  0.1772911  -0.356   0.7219  
## rs2800774    0.0266631  0.0939158   0.284   0.7767  
## rs56268398   0.0605925  0.1983985   0.305   0.7603  
## rs12082914   0.1894957  0.3400845   0.557   0.5779  
## rs78566499   0.0775510  0.2753531   0.282   0.7785  
## rs1809915    0.2982296  0.1990040   1.499   0.1353  
## rs7547671    0.2785216  0.8860444   0.314   0.7535  
## rs146549873 -0.0763266  0.0938884  -0.813   0.4171  
## rs113934925 -0.1689566  0.9265713  -0.182   0.8555  
## rs200384063 -0.0353196  0.2725797  -0.130   0.8970  
## rs4654930    0.3933332  0.3124555   1.259   0.2093  
## rs3855556    0.0959987  0.1545367   0.621   0.5351  
## rs35836191  -0.6655432  0.5295844  -1.257   0.2101  
## rs60803995   0.1947940  0.1536928   1.267   0.2063  
## rs12037596  -0.1170011  0.1806859  -0.648   0.5179  
## rs2651402    0.4172604  0.3110401   1.342   0.1811  
## rs41290414  -0.3163552  0.4893582  -0.646   0.5186  
## rs72476502   0.0790231  0.2649570   0.298   0.7658  
## rs58090121  -0.0165627  0.1430192  -0.116   0.9079  
## rs904937    -0.1079859  0.1691946  -0.638   0.5239  
## rs41265985  -0.3857862  0.2618278  -1.473   0.1420  
## rs77025042  -0.0157810  0.1191521  -0.132   0.8947  
## rs7417849   -0.1141053  0.1663477  -0.686   0.4934  
## rs113558389 -0.1506948  0.2873036  -0.525   0.6004  
## rs904929     0.1129374  0.1973569   0.572   0.5677  
## rs10799704  -0.0001877  0.0840813  -0.002   0.9982  
## rs148061397  0.0406450  0.2051900   0.198   0.8432  
## rs115933091  0.1055186  0.3592554   0.294   0.7692  
## rs143553186  0.5298658  0.2947059   1.798   0.0735 .
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 0.6711 on 233 degrees of freedom
## Multiple R-squared:  0.6148, Adjusted R-squared:  0.4446 
## F-statistic: 3.611 on 103 and 233 DF,  p-value: 2.972e-16
plot(model, which=1)

bptest(model)
## 
##  studentized Breusch-Pagan test
## 
## data:  model
## BP = 96.199, df = 103, p-value = 0.6693
# We note from the Residuals Vs Fitted Plot that there 
#might be a slight concern with nonconstant variance but for the Breusch-Pagan test 
# we fail to reject with an alpha of 0.05.

plot(model, which=2)

shapiro.test(model$residuals)
## 
##  Shapiro-Wilk normality test
## 
## data:  model$residuals
## W = 0.94027, p-value = 2.08e-10
# However, we notice an issue with normality from a QQPlot that 
# suggests the data is skewed and we reject the shapiro-wilks test with an alpha of 0.05

plot(model, which=3)

#The Scale-Location plot has a slope most likely because there isn't enough data for the fitted values.

plot(model, which=4)

plot(model, which=5)

# We don't notice an issues with overly influential points in the residuals vs Leverage Plot. 
# However, we do note some points are considered to have high leverage later on. But these points 
# are actually important to the variation we want to capture in our data.

summary(model)$adj.r.squared
## [1] 0.444552
# We have an adjusted R-squared of 0.44452. 

test <- model <- lm(ENSG00000142794+2~., data=gene_data)
# We do a Boxcox on the model and note that we should do a transformation on Y(1/sqrt(Y+2))
boxcox(test)

VIFs of Original Model

# VIF Calculation and setting N and P 
n <- nrow(gene_data)
p <- length(model$coefficients)

# There is an indication of severe multicolinearity. 
car::vif(model)
##  rs12734589   rs2004380  rs10737456  rs10799692   rs3820296  rs10916988 
##   53.938076  396.667047   29.989972   98.776324   41.200683   11.627147 
##   rs1976403   rs1780324   rs4654753  rs79760554  rs12729540  rs12043777 
##   59.105285   32.812037   70.967745    5.029291   22.203345    8.439732 
##  rs10799702   rs4061838   rs7545635   rs4654946   rs2047653   rs4079441 
##   18.192176   12.458436   21.141962   85.906720   73.463714   89.795592 
##  rs12034222   rs3820292  rs75417796   rs7541779  rs75417790  rs10799691 
##    6.065616    6.054684    1.756140   27.444465    1.846154   27.469175 
##   rs1971328  rs12744514  rs41310392  rs75056920   rs1697421 rs146767219 
##   15.900064  103.196154   40.269403    7.224826   23.143299    3.799889 
##  rs12132412 rs112985962 rs147900768   rs1814737  rs56286426  rs17420195 
##    8.346162  113.962670    8.909498  131.440962    7.271876  199.760324 
## rs113548640 rs146564096  rs10916989 rs150401191   rs3010180  rs78885464 
##   30.700811    5.847086   19.261110   94.030738    8.797080    4.748219 
##   rs6694671 rs144522615  rs61775934   rs3010181   rs1780323  rs61778366 
##   46.954267    8.112206   53.300421    6.207780    4.287989   20.657987 
##  rs79659018  rs10737458  rs11584744 rs201590042   rs1566524  rs61775950 
##    8.109858   65.126021   31.466721    3.403908   77.820080    3.513458 
## rs144443608  rs10916986    rs904927 rs190849739 rs143561157  rs12740648 
##    2.019597   33.746042   28.487079    9.052471    6.058666    4.889190 
##  rs12118362   rs1809914  rs41310412   rs6423191 rs140609058   rs7555005 
##    5.767630   14.932888    7.027638   17.147129   17.061526   27.146524 
##  rs71512991 rs139043162   rs2800935 rs113324018    rs904928   rs7533048 
##    2.913536   16.995030    8.307933   11.325202    4.666285   17.181528 
##  rs12239666    rs972662   rs9726624   rs2800774  rs56268398  rs12082914 
##   14.776399   13.066115    2.152436    2.108870    7.648545   30.252107 
##  rs78566499   rs1809915   rs7547671 rs146549873 rs113934925 rs200384063 
##    9.431760   13.113966  240.217181    3.809010  144.059295    4.097976 
##   rs4654930   rs3855556  rs35836191  rs60803995  rs12037596   rs2651402 
##   19.221395    8.404156   35.165796    8.655057   12.487565    1.881941 
##  rs41290414  rs72476502  rs58090121    rs904937  rs41265985  rs77025042 
##   37.250580    9.801619    3.754337    9.915960   12.999266    1.703049 
##   rs7417849 rs113558389    rs904929  rs10799704 rs148061397 rs115933091 
##    8.494297    8.513513   12.096988    1.916642    1.841093    1.689051 
## rs143553186 
##    1.506332
test <- lm(ENSG00000142794+2~., data=gene_data)

Doing the Added Variable Plots

# The added variable plots suggest a lot of the predictors do not 
# add new information when the other predictors are included in the model.
pdf("AddedVariablesBeforeSelection.pdf")
avPlots(model, ask=FALSE)
dev.off()
## png 
##   2

Transforming the Data

# We do the transform on the train and test datasets. # We also set n.
# Additionally, we also plot the transformed values and note they appear to be normally distributed. 
transformed_gene_data <- gene_data
transformed_gene_test <- gene_test
n <- nrow(transformed_gene_data)
transformed_gene_data[["ENSG00000142794"]] <- 1/(sqrt(transformed_gene_data[["ENSG00000142794"]]+2))
transformed_gene_test[["ENSG00000142794"]] <- 1/(sqrt(transformed_gene_test[["ENSG00000142794"]]+2))
boxplot(transformed_gene_data["ENSG00000142794"], main="Boxplot of Transformed Gene Expression Values", ylab="Gene Expression Transformed Value", xlab="Boxplot")

hist(transformed_gene_data[["ENSG00000142794"]], main="Transformed ENSG0000014279 Gene Expression Distribution", ylab="Frequency", xlab="Transformed Gene Expression Value")

# Model Selection Process

# We do variable selection and we do a strict variable selection with a p-value of 0.01. Step-Forward BIC, and Step-Backward BIC.
# We then put the selected variables for each model together and do a best subset exhaustive search over just these variables. 

naieve_model <- lm(ENSG00000142794~., data=transformed_gene_data)
naieve_model_empty <- lm(ENSG00000142794~1, data=transformed_gene_data)


selected_p <- ols_step_backward_p(naieve_model, prem=0.01)
selected_p_model <- selected_p$model
p <- length(selected_p_model$coefficients)
RSS_selected <- c(crossprod(selected_p_model$residuals))
MSE <- RSS_selected / length(selected_p_model$residuals)
selected_p_stats <- rbind(sqrt(MSE), BIC(selected_p_model), summary(selected_p_model)$adj.r.squared, DAAG::press(selected_p_model))




selected<- stepAIC(naieve_model, k=log(n))
p <- length(selected$coefficients)
RSS_selected <- c(crossprod(selected$residuals))
MSE <- RSS_selected / length(selected$residuals)
selected_stats <- rbind(sqrt(MSE), BIC(selected), summary(selected)$adj.r.squared, DAAG::press(selected))

forward_bic <- stepAIC(naieve_model_empty, scope = list(upper=naieve_model, lower=naieve_model_empty), direction="forward", k=log(n))
p <- length(forward_bic$coefficients)
RSS_selected <- c(crossprod(forward_bic$residuals))
MSE <- RSS_selected / length(forward_bic$residuals)
forward_bic_stats <- rbind(sqrt(MSE), BIC(forward_bic), summary(forward_bic)$adj.r.squared, DAAG::press(forward_bic))

VIF Stats of Selected Models

car::vif(selected)
##  rs12734589  rs10799692 rs113548640   rs6694671   rs1566524  rs35836191 
##    5.036327    4.997166    2.697843    3.118706    3.069425    1.694852 
##  rs60803995 
##    2.351035
car::vif(selected_p_model)
##  rs12734589 rs113548640   rs6694671   rs1566524  rs35836191  rs60803995 
##    3.283511    2.146153    2.669397    3.068997    1.694835    2.347506
car::vif(forward_bic)
##  rs12734589   rs1976403   rs4654753   rs6694671 rs113548640  rs10916989 
##    3.192661    2.848736    4.706859    3.299466    5.526336    3.981726
# We now do not see any issues with multicolinearity which suggests 
# we do not need to use ridge regression on these reduced variable models.

Selected Model Choosing

search_full_model <- lm(ENSG00000142794~rs12734589 + rs1976403 + rs4654753 + rs6694671 + rs113548640 + rs10916989 + rs1566524, rs35836191 + rs60803995 + rs10799692, data=transformed_gene_data)

all_possible <- ols_step_best_subset(search_full_model)
all_possible
##                                 Best Subsets Regression                                 
## ----------------------------------------------------------------------------------------
## Model Index    Predictors
## ----------------------------------------------------------------------------------------
##      1         rs12734589                                                                
##      2         rs6694671 rs113548640                                                     
##      3         rs12734589 rs6694671 rs113548640                                          
##      4         rs12734589 rs1976403 rs6694671 rs113548640                                
##      5         rs12734589 rs4654753 rs6694671 rs113548640 rs10916989                     
##      6         rs12734589 rs1976403 rs4654753 rs6694671 rs113548640 rs10916989           
##      7         rs12734589 rs1976403 rs4654753 rs6694671 rs113548640 rs10916989 rs1566524 
## ----------------------------------------------------------------------------------------
## 
##                                                     Subsets Regression Summary                                                     
## -----------------------------------------------------------------------------------------------------------------------------------
##                        Adj.        Pred                                                                                             
## Model    R-Square    R-Square    R-Square       C(p)          AIC        SBIC       SBC         MSEP      FPE       HSP       APC  
## -----------------------------------------------------------------------------------------------------------------------------------
##   1        0.4428      0.4412      0.4356    12886.6397     -972.0540      NA     -960.5938    0.0033    0.0033    0.0000    0.5638 
##   2        0.5173      0.5144      0.5077    11122.3098    -1018.3882      NA    -1003.1079    0.0028    0.0028    0.0000    0.4914 
##   3        0.5479      0.5438      0.5357    10397.7557    -1038.4744      NA    -1019.3740    0.0027    0.0027    0.0000    0.4630 
##   4        0.5550      0.5496      0.5398    10231.6838    -1041.7965      NA    -1018.8760    0.0026    0.0026    0.0000    0.4584 
##   5        0.5639      0.5573      0.5477    10021.9716    -1046.6223      NA    -1019.8817    0.0026    0.0026    0.0000    0.4519 
##   6        0.5751      0.5674       0.556     9758.9045    -1053.3680      NA    -1022.8074    0.0026    0.0026    0.0000    0.4429 
##   7        0.5798      0.5709      0.5588     9649.2532    -1055.1209      NA    -1020.7402    0.0025    0.0025    0.0000    0.4406 
## -----------------------------------------------------------------------------------------------------------------------------------
## AIC: Akaike Information Criteria 
##  SBIC: Sawa's Bayesian Information Criteria 
##  SBC: Schwarz Bayesian Criteria 
##  MSEP: Estimated error of prediction, assuming multivariate normality 
##  FPE: Final Prediction Error 
##  HSP: Hocking's Sp 
##  APC: Amemiya Prediction Criteria
final_stats <- cbind(selected_p_stats,selected_stats,forward_bic_stats)
row.names(final_stats) <- c("RMSE", "BIC", "ADJ-R-Squared", "PRESS")
colnames(final_stats) <- c("BackwardSelected_By_P_0.01", "Backward_BIC", "ForwardBIC")
knitr::kable(final_stats)
BackwardSelected_By_P_0.01 Backward_BIC ForwardBIC
RMSE 0.0498458 0.0493727 0.0495121
BIC -1018.2806629 -1018.8876841 -1022.8073740
ADJ-R-Squared 0.5615122 0.5684880 0.5673627
PRESS 0.8735692 0.8599983 0.8632144
# We note that the optimal model is the one selected by forward_bic 
# if we consider all the variables all these models give us and their best possible subsets.
# We try to minimize SBC(BIC) and keep a reasonable Adj-R-Squared(>0.55) and MSE. 
# We note that MSE is near minmal at 4 predictors. But we have a lower SBC with 6 predictors and a slightly higher R-squared.
model <- forward_bic

Diagnostics of Chosen Model

# We redo the model diagnostics from the beginning on the selected model. 
# We will then compare this to one of the other models in our testing.
summary(model)
## 
## Call:
## lm(formula = ENSG00000142794 ~ rs12734589 + rs1976403 + rs4654753 + 
##     rs6694671 + rs113548640 + rs10916989, data = transformed_gene_data)
## 
## Residuals:
##       Min        1Q    Median        3Q       Max 
## -0.134598 -0.026933  0.000069  0.028130  0.194233 
## 
## Coefficients:
##              Estimate Std. Error t value Pr(>|t|)    
## (Intercept)  0.524253   0.010447  50.183  < 2e-16 ***
## rs12734589   0.027072   0.006622   4.088 5.46e-05 ***
## rs1976403   -0.019831   0.006733  -2.946 0.003453 ** 
## rs4654753    0.033980   0.008821   3.852 0.000141 ***
## rs6694671    0.035719   0.007743   4.613 5.68e-06 ***
## rs113548640 -0.036296   0.011122  -3.263 0.001216 ** 
## rs10916989  -0.024367   0.007821  -3.116 0.001995 ** 
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 0.05003 on 330 degrees of freedom
## Multiple R-squared:  0.5751, Adjusted R-squared:  0.5674 
## F-statistic: 74.44 on 6 and 330 DF,  p-value: < 2.2e-16
# All variables appear significant





# We note that the residual vs fitted plot appears to be random. 
plot(model, which=1)

# We notice a small issue with normality still but this can probably be ignored. 
# There is no issue with non constant error variance which is more important.
plot(model, which=2)

shapiro.test(model$residuals)
## 
##  Shapiro-Wilk normality test
## 
## data:  model$residuals
## W = 0.98986, p-value = 0.01963
bptest(model)
## 
##  studentized Breusch-Pagan test
## 
## data:  model
## BP = 2.7847, df = 6, p-value = 0.8353
# We notice potential outliers in the Cook's Distance Plot and Residuals vs Leverage Plot 
# so we will do further analysis on these points.
# Particulary points 283, 309, and 317 have a high cook's distance and are candidate outliers.
# The Scale Location Plot doesn't appear to have a slope which is good.
plot(model, which=3)

plot(model, which=4)

plot(model, which=5)

# The added variable plots look much better. 

pdf("AddedVariablesAfterSelection.pdf")
avPlots(model, ask=FALSE)
dev.off()
## png 
##   2
# All variables appear significant.
# MSE looks very good. 
knitr::kable(anova(model))
Df Sum Sq Mean Sq F value Pr(>F)
rs12734589 1 0.8610066 0.8610066 343.928080 0.0000000
rs1976403 1 0.1251881 0.1251881 50.006228 0.0000000
rs4654753 1 0.0464546 0.0464546 18.556256 0.0000218
rs6694671 1 0.0403177 0.0403177 16.104843 0.0000742
rs113548640 1 0.0208500 0.0208500 8.328506 0.0041598
rs10916989 1 0.0243041 0.0243041 9.708235 0.0019954
Residuals 330 0.8261383 0.0025034 NA NA
# Sensitivity Analys is
# We do outlier analysis here

cd <- cooks.distance(model)
transformed_gene_dropped <- model$model[-c(which(cd > 4 / (n-p))),]
cooks_distance_model <- lm(ENSG00000142794~., data=transformed_gene_dropped)


# We note that we would like to retain these points regardless as they are interesting and represent variation 
# in the population that can be informative in clinical situations. 
# We opt to not use Robust Regression since the effect on the final model is not serious enough.



leverage_threshold <- (3*(p))/n
leverage_values <- hatvalues(model)
transformed_gene_dropped_leverage <- model$model[-c(which(leverage_values > leverage_threshold)),]
leverage_model <- lm(ENSG00000142794~., data=transformed_gene_dropped_leverage)

betas <- as.data.frame(dfbetas(model))

# We print the largest DFBeta for each parameter and the index of that DFBeta.
to_remove <- c()
for(column in betas){
  outliers <- which(abs(column) > 0.11)
  print(max(abs(column)))
  print(which(abs(column) == max(abs(column))))
  to_remove <- union(to_remove, outliers)
}
## [1] 0.4216956
## [1] 238
## [1] 0.5156542
## [1] 245
## [1] 0.8014485
## [1] 221
## [1] 0.3773799
## [1] 221
## [1] 0.7861822
## [1] 221
## [1] 0.8713133
## [1] 221
## [1] 0.3917799
## [1] 238
# One of 238, 245, and 221 give the max DFBetas the coefficients. These are the greatest outliers for DFBetas.
transformed_gene_dropped_betas <- model$model[-c(to_remove),]
new_model_betas <- lm(ENSG00000142794~., data=transformed_gene_dropped_betas)
coefficients <- rbind(model$coefficients,new_model_betas$coefficients,cooks_distance_model$coefficients, leverage_model$coefficients)
row.names(coefficients) <- c("Normal Model", "DroppedHighDFBetas", "DroppedHighCooks", "DroppedHighLeverage")

Sensitiy Analysis Continued

# We make a summary table that shows what happens when we drop high DFBetas, highCooks, and High Leverage Points from the model.
model_data <- c()
add_to_coefficients_data <- function(model, model_data){
  current_model <- model
  RSS_selected <- c(crossprod(current_model$residuals))
  MSE <- RSS_selected / length(current_model$residuals)
  current_model_stats <- cbind(sqrt(MSE), BIC(current_model), summary(current_model)$adj.r.squared, DAAG::press(current_model), shapiro.test(model$residuals)$p.value, bptest(model)$p.value)
  colnames(current_model_stats) <- c("RMSE", "BIC", "ADJ-R-Squared", "PRESS", "Shapiro_Wilks_Test_P_value", "Breusch-Pagan_Test_P_value")
  model_data <- rbind(model_data, current_model_stats)
  shapiro.test(model$residuals)
  return(model_data)
}
model_data <- add_to_coefficients_data(model, model_data)
model_data <- add_to_coefficients_data(cooks_distance_model, model_data)
model_data <- add_to_coefficients_data(new_model_betas, model_data)
model_data <- add_to_coefficients_data(leverage_model, model_data)

# Here is the summary table
summary_of_excluding_points <- cbind(coefficients, model_data)
knitr::kable(summary_of_excluding_points)
(Intercept) rs12734589 rs1976403 rs4654753 rs6694671 rs113548640 rs10916989 RMSE BIC ADJ-R-Squared PRESS Shapiro_Wilks_Test_P_value Breusch-Pagan_Test_P_value
Normal Model 0.5242534 0.0270721 -0.0198311 0.0339801 0.0357185 -0.0362962 -0.0243674 0.0495121 -1022.8074 0.5673627 0.8632144 0.0196253 0.8353379
DroppedHighDFBetas 0.5242154 0.0268792 -0.0159879 0.0372453 0.0372679 -0.0397645 -0.0286545 0.0441744 -1038.9073 0.6071241 0.6451452 0.1451441 0.9307043
DroppedHighCooks 0.5288562 0.0291684 -0.0170019 0.0298446 0.0345575 -0.0387295 -0.0245814 0.0434263 -947.5295 0.6313659 0.5618019 0.0006252 0.0465953
DroppedHighLeverage 0.5282415 0.0369003 -0.0150414 0.0312738 0.0309058 -0.0392810 -0.0287681 0.0488392 -981.2104 0.5852552 0.7975638 0.0208370 0.8598845
# We only would consider dropping HighDF Betas since dropping the other elements hurts BIC and might 
# even cause the non constant error vairance assumption not to hold. We choose not to drop any points. 
#The coefficients are not changed greatly enough to warrant us to exclude so many 
# points that contain valuable variation from the overall population.

# Dropping the High DFBetas points might be something we would consider if 
# we had more data to represent the true diversity of the population but dropping 
# these points might exclude points that include important variation.

Training the Final Model and Diagnostics of Final Model

# We compare the validation model and original model and get MSPR and compare it to MSE.

predictions <- predict(model, transformed_gene_test)
validation_model_one <- lm(formula(model), data=transformed_gene_test)

# Comparison of Model Stats 
model_stats <- cbind(sigma(model)^2, summary(model)$adj.r.squared, DAAG::press(model))
validation_model_stats <- cbind(sigma(validation_model_one)^2, summary(validation_model_one)$adj.r.squared, DAAG::press(validation_model_one))
comparison_of_stats <- rbind(model_stats, validation_model_stats)
colnames(comparison_of_stats) <- c("MSE", "Adj-R-Squared","PRESS")
rownames(comparison_of_stats) <- c("Original Model", "Validation Model")
comparison_of_stats
##                          MSE Adj-R-Squared     PRESS
## Original Model   0.002503449     0.5673627 0.8632144
## Validation Model 0.002299010     0.5480023 0.1912980
knitr::kable(comparison_of_stats)
MSE Adj-R-Squared PRESS
Original Model 0.0025034 0.5673627 0.8632144
Validation Model 0.0022990 0.5480023 0.1912980
# MSE vs MSPR
mspr_vs_mse <- cbind(sigma(model)^2, mean((transformed_gene_test[["ENSG00000142794"]]-predictions)^2))
colnames(mspr_vs_mse) <- c("MSE", "MSPR")
knitr::kable(mspr_vs_mse)
MSE MSPR
0.0025034 0.0021703
# Fitting the Final Multiple Linear Regression Model :)
final_gene_data <- read_in_pruned_datasets_for_gene_0.8("ENSG00000142794", "D:\\Project\\GitStash\\Applied_regression_project\\")
transformed_final_gene_data <- final_gene_data
transformed_final_gene_data[["ENSG00000142794"]] <- 1/(sqrt(transformed_final_gene_data[["ENSG00000142794"]]+2))
final_model <- lm(formula(model), data=transformed_gene_data)
summary(final_model)
## 
## Call:
## lm(formula = formula(model), data = transformed_gene_data)
## 
## Residuals:
##       Min        1Q    Median        3Q       Max 
## -0.134598 -0.026933  0.000069  0.028130  0.194233 
## 
## Coefficients:
##              Estimate Std. Error t value Pr(>|t|)    
## (Intercept)  0.524253   0.010447  50.183  < 2e-16 ***
## rs12734589   0.027072   0.006622   4.088 5.46e-05 ***
## rs1976403   -0.019831   0.006733  -2.946 0.003453 ** 
## rs4654753    0.033980   0.008821   3.852 0.000141 ***
## rs6694671    0.035719   0.007743   4.613 5.68e-06 ***
## rs113548640 -0.036296   0.011122  -3.263 0.001216 ** 
## rs10916989  -0.024367   0.007821  -3.116 0.001995 ** 
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 0.05003 on 330 degrees of freedom
## Multiple R-squared:  0.5751, Adjusted R-squared:  0.5674 
## F-statistic: 74.44 on 6 and 330 DF,  p-value: < 2.2e-16
knitr::kable(anova(final_model))
Df Sum Sq Mean Sq F value Pr(>F)
rs12734589 1 0.8610066 0.8610066 343.928080 0.0000000
rs1976403 1 0.1251881 0.1251881 50.006228 0.0000000
rs4654753 1 0.0464546 0.0464546 18.556256 0.0000218
rs6694671 1 0.0403177 0.0403177 16.104843 0.0000742
rs113548640 1 0.0208500 0.0208500 8.328506 0.0041598
rs10916989 1 0.0243041 0.0243041 9.708235 0.0019954
Residuals 330 0.8261383 0.0025034 NA NA
plot(final_model, which=1)

plot(final_model, which=2)

plot(final_model, which=3)

plot(final_model, which=4)

plot(final_model, which=5)

shapiro.test(model$residuals)
## 
##  Shapiro-Wilk normality test
## 
## data:  model$residuals
## W = 0.98986, p-value = 0.01963
bptest(final_model)
## 
##  studentized Breusch-Pagan test
## 
## data:  final_model
## BP = 2.7847, df = 6, p-value = 0.8353
# We note the same diagnostic findings as we did from the selected model. There is a slight issue with normality and some outliers. 

Outlier Analysis in Final Model

n <- nrow(transformed_final_gene_data)
p <- length(final_model$coefficients)
model <- final_model
# We do outlier analysis here

cd <- cooks.distance(model)
transformed_gene_dropped <- model$model[-c(which(cd > 4 / (n-p))),]
cooks_distance_model <- lm(ENSG00000142794~., data=transformed_gene_dropped)



leverage_threshold <- (3*(p))/n
leverage_values <- hatvalues(model)
transformed_gene_dropped_leverage <- model$model[-c(which(leverage_values > leverage_threshold)),]
leverage_model <- lm(ENSG00000142794~., data=transformed_gene_dropped_leverage)

betas <- as.data.frame(dfbetas(model))

# We print the largest DFBeta for each parameter and the index of that DFBeta.
to_remove <- c()
for(column in betas){
  outliers <- which(abs(column) > 2/sqrt(n))
  print(max(abs(column)))
  print(which(abs(column) == max(abs(column))))
  to_remove <- union(to_remove, outliers)
}
## [1] 0.4216956
## [1] 238
## [1] 0.5156542
## [1] 245
## [1] 0.8014485
## [1] 221
## [1] 0.3773799
## [1] 221
## [1] 0.7861822
## [1] 221
## [1] 0.8713133
## [1] 221
## [1] 0.3917799
## [1] 238
#238, 221, and 245 are possible massive outliers 
transformed_gene_dropped_betas <- model$model[-c(to_remove),]
new_model_betas <- lm(ENSG00000142794~., data=transformed_gene_dropped_betas)
coefficients <- rbind(model$coefficients,new_model_betas$coefficients, cooks_distance_model$coefficients, leverage_model$coefficients)
row.names(coefficients) <- c("Normal Model", "DroppedHighDFBetas", "DroppedHighCooks", "DroppedHighLeverage")

Outlier Analysis Continued of Final Model

# We make a summary table that shows what happens when we drop high DFBetas, highCooks, and High Leverage Points from the model.
model_data <- c()
add_to_coefficients_data <- function(model, model_data){
  current_model <- model
  RSS_selected <- c(crossprod(current_model$residuals))
  MSE <- RSS_selected / length(current_model$residuals)
  current_model_stats <- cbind(sqrt(MSE), BIC(current_model), summary(current_model)$adj.r.squared, DAAG::press(current_model), shapiro.test(model$residuals)$p.value, bptest(model)$p.value)
  colnames(current_model_stats) <- c("RMSE", "BIC", "ADJ-R-Squared", "PRESS", "Shapiro_Wilks_Test_P_value", "Breusch-Pagan_Test_P_value")
  model_data <- rbind(model_data, current_model_stats)
  shapiro.test(model$residuals)
  return(model_data)
}
model_data <- add_to_coefficients_data(model, model_data)
model_data <- add_to_coefficients_data(cooks_distance_model, model_data)
model_data <- add_to_coefficients_data(new_model_betas, model_data)
model_data <- add_to_coefficients_data(leverage_model, model_data)

# Here is the summary table
summary_of_excluding_points <- cbind(coefficients, model_data)
knitr::kable(summary_of_excluding_points)
(Intercept) rs12734589 rs1976403 rs4654753 rs6694671 rs113548640 rs10916989 RMSE BIC ADJ-R-Squared PRESS Shapiro_Wilks_Test_P_value Breusch-Pagan_Test_P_value
Normal Model 0.5242534 0.0270721 -0.0198311 0.0339801 0.0357185 -0.0362962 -0.0243674 0.0495121 -1022.8074 0.5673627 0.8632144 0.0196253 0.8353379
DroppedHighDFBetas 0.5244619 0.0294151 -0.0164700 0.0376958 0.0333010 -0.0355336 -0.0282190 0.0434386 -1029.1651 0.6155703 0.6111564 0.0857069 0.6765788
DroppedHighCooks 0.5242282 0.0298767 -0.0116887 0.0281422 0.0377016 -0.0447463 -0.0243940 0.0425174 -921.8093 0.6437677 0.5179535 0.0002389 0.0167372
DroppedHighLeverage 0.5282157 0.0376963 -0.0170775 0.0327219 0.0280078 -0.0343316 -0.0281172 0.0490726 -952.8234 0.5846780 0.7864094 0.0226870 0.8651839
#We note that dropping the high DFBetas again results in a satisfied normality assumption but we choose to retain these points.

Leave One Out Cross Validation MSE of Final Model

p <- length(model$coefficients)
n <- nrow(model$model)
cv.lm(model, data=transformed_final_gene_data, m=n)
## Analysis of Variance Table
## 
## Response: ENSG00000142794
##              Df Sum Sq Mean Sq F value  Pr(>F)    
## rs12734589    1  1.149   1.149  415.86 < 2e-16 ***
## rs1976403     1  0.147   0.147   53.33 1.5e-12 ***
## rs4654753     1  0.054   0.054   19.42 1.3e-05 ***
## rs6694671     1  0.057   0.057   20.48 7.9e-06 ***
## rs113548640   1  0.035   0.035   12.55 0.00044 ***
## rs10916989    1  0.024   0.024    8.63 0.00349 ** 
## Residuals   414  1.144   0.003                    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## Warning in cv.lm(model, data = transformed_final_gene_data, m = n): 
## 
##  As there is >1 explanatory variable, cross-validation
##  predicted values for a fold are not a linear function
##  of corresponding overall predicted values.  Lines that
##  are shown for the different folds are approximate
## Warning in plot.xy(xy, type, ...): pch value '275' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '284' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '273' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '298' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '292' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '287' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '299' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '310' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '327' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '322' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '334' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '338' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '316' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '264' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '325' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '276' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '331' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '323' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '270' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '330' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '337' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '321' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '320' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '289' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '291' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '268' is invalid in this locale
## Warning in plot.xy(xy, type, ...): unimplemented pch value '28'
## Warning in plot.xy(xy, type, ...): pch value '281' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '290' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '261' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '318' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '303' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '301' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '317' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '329' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '302' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '306' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '256' is invalid in this locale
## Warning in plot.xy(xy, type, ...): unimplemented pch value '27'
## Warning in plot.xy(xy, type, ...): pch value '307' is invalid in this locale
## Warning in plot.xy(xy, type, ...): unimplemented pch value '31'
## Warning in plot.xy(xy, type, ...): pch value '257' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '297' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '259' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '262' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '335' is invalid in this locale
## Warning in plot.xy(xy, type, ...): unimplemented pch value '31'
## Warning in plot.xy(xy, type, ...): pch value '309' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '286' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '333' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '311' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '326' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '267' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '304' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '315' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '260' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '313' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '282' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '319' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '269' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '293' is invalid in this locale
## Warning in plot.xy(xy, type, ...): unimplemented pch value '30'
## Warning in plot.xy(xy, type, ...): pch value '258' is invalid in this locale
## Warning in plot.xy(xy, type, ...): unimplemented pch value '26'
## Warning in plot.xy(xy, type, ...): pch value '296' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '288' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '305' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '312' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '271' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '295' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '332' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '336' is invalid in this locale
## Warning in plot.xy(xy, type, ...): unimplemented pch value '29'
## Warning in plot.xy(xy, type, ...): pch value '272' is invalid in this locale
## Warning in plot.xy(xy, type, ...): unimplemented pch value '27'
## Warning in plot.xy(xy, type, ...): pch value '308' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '274' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '283' is invalid in this locale
## Warning in plot.xy(xy, type, ...): unimplemented pch value '26'
## Warning in plot.xy(xy, type, ...): pch value '266' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '285' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '265' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '294' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '280' is invalid in this locale
## Warning in plot.xy(xy, type, ...): unimplemented pch value '30'
## Warning in plot.xy(xy, type, ...): pch value '263' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '300' is invalid in this locale
## Warning in plot.xy(xy, type, ...): unimplemented pch value '29'
## Warning in plot.xy(xy, type, ...): pch value '324' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '328' is invalid in this locale
## Warning in plot.xy(xy, type, ...): unimplemented pch value '28'
## Warning in plot.xy(xy, type, ...): pch value '277' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '278' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '314' is invalid in this locale
## Warning in plot.xy(xy, type, ...): pch value '279' is invalid in this locale
## 
## fold 1 
## Observations in test set: 1 
##                      77
## Predicted       0.59754
## cvpred          0.59744
## ENSG00000142794 0.60150
## CV residual     0.00406
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 2 
## Observations in test set: 2 
##                    214     331
## Predicted       0.4822  0.5763
## cvpred          0.4814  0.5760
## ENSG00000142794 0.5240  0.5655
## CV residual     0.0426 -0.0105
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 3 
## Observations in test set: 2 
##                      115     358
## Predicted        0.57631  0.6704
## cvpred           0.57639  0.6706
## ENSG00000142794  0.57063  0.6485
## CV residual     -0.00576 -0.0221
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 4 
## Observations in test set: 2 
##                       4    387
## Predicted        0.5763 0.4920
## cvpred           0.5763 0.4912
## ENSG00000142794  0.5242 0.5771
## CV residual     -0.0521 0.0859
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 5 
## Observations in test set: 2 
##                      24     292
## Predicted        0.5018  0.6184
## cvpred           0.5030  0.6207
## ENSG00000142794  0.4665  0.5802
## CV residual     -0.0364 -0.0405
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 6 
## Observations in test set: 2 
##                     120      233
## Predicted        0.5861  0.57631
## cvpred           0.5866  0.57633
## ENSG00000142794  0.5316  0.56830
## CV residual     -0.0549 -0.00803
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 7 
## Observations in test set: 2 
##                     157    206
## Predicted        0.5975  0.576
## cvpred           0.5996  0.577
## ENSG00000142794  0.5390  0.452
## CV residual     -0.0606 -0.125
## 
## Sum of squares = 0.02    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 8 
## Observations in test set: 2 
##                     298     373
## Predicted       0.59607  0.6704
## cvpred          0.59609  0.6705
## ENSG00000142794 0.59821  0.6574
## CV residual     0.00213 -0.0132
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 9 
## Observations in test set: 2 
##                      278     356
## Predicted        0.64441  0.6917
## cvpred           0.64450  0.6920
## ENSG00000142794  0.64007  0.6796
## CV residual     -0.00444 -0.0124
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 10 
## Observations in test set: 2 
##                       3     320
## Predicted       0.59754  0.5700
## cvpred          0.59736  0.5714
## ENSG00000142794 0.60522  0.4923
## CV residual     0.00786 -0.0791
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 11 
## Observations in test set: 2 
##                    207     335
## Predicted       0.4822  0.5763
## cvpred          0.4816  0.5762
## ENSG00000142794 0.5309  0.5217
## CV residual     0.0493 -0.0545
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 12 
## Observations in test set: 2 
##                    166    273
## Predicted        0.586 0.5217
## cvpred           0.587 0.5194
## ENSG00000142794  0.471 0.5828
## CV residual     -0.116 0.0634
## 
## Sum of squares = 0.02    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 13 
## Observations in test set: 2 
##                     162    226
## Predicted        0.6115 0.5861
## cvpred           0.6118 0.5860
## ENSG00000142794  0.5967 0.6068
## CV residual     -0.0151 0.0208
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 14 
## Observations in test set: 2 
##                    141     313
## Predicted       0.6704  0.5700
## cvpred          0.6702  0.5716
## ENSG00000142794 0.6976  0.4812
## CV residual     0.0274 -0.0904
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 15 
## Observations in test set: 2 
##                    192    302
## Predicted       0.6704 0.5217
## cvpred          0.6702 0.5195
## ENSG00000142794 0.7126 0.5841
## CV residual     0.0424 0.0646
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 16 
## Observations in test set: 2 
##                     96    254
## Predicted       0.4920 0.6184
## cvpred          0.4919 0.6164
## ENSG00000142794 0.5045 0.6504
## CV residual     0.0127 0.0339
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 17 
## Observations in test set: 2 
##                       86    153
## Predicted        0.57631  0.482
## cvpred           0.57705  0.484
## ENSG00000142794  0.56756  0.407
## CV residual     -0.00949 -0.077
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 18 
## Observations in test set: 2 
##                      143    229
## Predicted        0.59754 0.5763
## cvpred           0.59756 0.5762
## ENSG00000142794  0.59118 0.6009
## CV residual     -0.00638 0.0247
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 19 
## Observations in test set: 2 
##                    293   355
## Predicted       0.6374 0.670
## cvpred          0.6361 0.669
## ENSG00000142794 0.6524 0.788
## CV residual     0.0163 0.118
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 20 
## Observations in test set: 2 
##                     44    271
## Predicted       0.5763 0.6704
## cvpred          0.5759 0.6696
## ENSG00000142794 0.6136 0.7651
## CV residual     0.0378 0.0955
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 21 
## Observations in test set: 2 
##                    223    236
## Predicted       0.5861 0.6704
## cvpred          0.5856 0.6696
## ENSG00000142794 0.6249 0.7623
## CV residual     0.0393 0.0927
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 22 
## Observations in test set: 2 
##                    180     306
## Predicted       0.6704 0.59607
## cvpred          0.6701 0.59590
## ENSG00000142794 0.7053 0.60142
## CV residual     0.0352 0.00551
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 23 
## Observations in test set: 2 
##                     62    398
## Predicted       0.5763 0.4905
## cvpred          0.5764 0.4886
## ENSG00000142794 0.5881 0.5603
## CV residual     0.0117 0.0717
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 24 
## Observations in test set: 2 
##                    123     228
## Predicted       0.5861  0.6704
## cvpred          0.5858  0.6706
## ENSG00000142794 0.6380  0.6397
## CV residual     0.0522 -0.0308
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 25 
## Observations in test set: 2 
##                   283    351
## Predicted       0.491 0.5861
## cvpred          0.476 0.5857
## ENSG00000142794 0.618 0.6346
## CV residual     0.142 0.0489
## 
## Sum of squares = 0.02    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'

## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 26 
## Observations in test set: 2 
##                    168     337
## Predicted       0.5748  0.5748
## cvpred          0.5741  0.5741
## ENSG00000142794 0.6229  0.5613
## CV residual     0.0488 -0.0127
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 27 
## Observations in test set: 2 
##                    112     393
## Predicted       0.5763  0.5763
## cvpred          0.5764  0.5764
## ENSG00000142794 0.6036  0.5290
## CV residual     0.0272 -0.0474
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 28 
## Observations in test set: 2 
##                    318    384
## Predicted       0.5217 0.5861
## cvpred          0.5195 0.5861
## ENSG00000142794 0.5844 0.5987
## CV residual     0.0649 0.0125
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 29 
## Observations in test set: 2 
##                    277    378
## Predicted       0.5785 0.6704
## cvpred          0.5721 0.6700
## ENSG00000142794 0.6450 0.7102
## CV residual     0.0729 0.0401
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 30 
## Observations in test set: 2 
##                    171     201
## Predicted       0.5975  0.5861
## cvpred          0.5966  0.5863
## ENSG00000142794 0.6350  0.5742
## CV residual     0.0384 -0.0121
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 31 
## Observations in test set: 2 
##                    60    151
## Predicted       0.512  0.692
## cvpred          0.512  0.692
## ENSG00000142794 0.529  0.665
## CV residual     0.018 -0.027
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 32 
## Observations in test set: 2 
##                     33    380
## Predicted       0.5770 0.4920
## cvpred          0.5763 0.4910
## ENSG00000142794 0.6050 0.5748
## CV residual     0.0287 0.0838
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 33 
## Observations in test set: 2 
##                     158     323
## Predicted       0.57631  0.5418
## cvpred          0.57629  0.5433
## ENSG00000142794 0.58513  0.5117
## CV residual     0.00884 -0.0315
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 34 
## Observations in test set: 2 
##                   195     340
## Predicted       0.586  0.6704
## cvpred          0.585  0.6705
## ENSG00000142794 0.689  0.6287
## CV residual     0.103 -0.0418
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 35 
## Observations in test set: 2 
##                    265       413
## Predicted       0.5217  0.670439
## cvpred          0.5192  0.670558
## ENSG00000142794 0.5906  0.670116
## CV residual     0.0713 -0.000442
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 36 
## Observations in test set: 2 
##                     269     274
## Predicted        0.5700  0.5961
## cvpred           0.5712  0.5968
## ENSG00000142794  0.5205  0.5480
## CV residual     -0.0507 -0.0489
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 37 
## Observations in test set: 2 
##                     47    296
## Predicted       0.5748 0.5217
## cvpred          0.5742 0.5208
## ENSG00000142794 0.5959 0.5401
## CV residual     0.0217 0.0192
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 38 
## Observations in test set: 2 
##                    126    394
## Predicted       0.6704 0.6704
## cvpred          0.6700 0.6700
## ENSG00000142794 0.6872 0.7063
## CV residual     0.0172 0.0363
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 39 
## Observations in test set: 2 
##                     99     186
## Predicted       0.5558  0.4822
## cvpred          0.5553  0.4830
## ENSG00000142794 0.5726  0.4436
## CV residual     0.0173 -0.0394
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 40 
## Observations in test set: 2 
##                    113    200
## Predicted       0.6704 0.5748
## cvpred          0.6704 0.5746
## ENSG00000142794 0.6739 0.5847
## CV residual     0.0035 0.0101
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 41 
## Observations in test set: 2 
##                    16      404
## Predicted       0.670  0.58614
## cvpred          0.670  0.58612
## ENSG00000142794 0.688  0.58209
## CV residual     0.018 -0.00404
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 42 
## Observations in test set: 2 
##                    267     365
## Predicted       0.5700  0.6704
## cvpred          0.5697  0.6706
## ENSG00000142794 0.5921  0.6517
## CV residual     0.0224 -0.0188
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 43 
## Observations in test set: 2 
##                      25      250
## Predicted       0.67044  0.58614
## cvpred          0.67040  0.58617
## ENSG00000142794 0.67709  0.57949
## CV residual     0.00669 -0.00668
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 44 
## Observations in test set: 2 
##                    131     242
## Predicted        0.586 0.58614
## cvpred           0.586 0.58627
## ENSG00000142794  0.562 0.59276
## CV residual     -0.024 0.00648
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 45 
## Observations in test set: 2 
##                    305      308
## Predicted       0.5700  0.54181
## cvpred          0.5694  0.54187
## ENSG00000142794 0.6105  0.53399
## CV residual     0.0412 -0.00788
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 46 
## Observations in test set: 2 
##                    116     327
## Predicted       0.6704 0.57004
## cvpred          0.6701 0.56997
## ENSG00000142794 0.7143 0.57377
## CV residual     0.0442 0.00381
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 47 
## Observations in test set: 2 
##                      235    359
## Predicted        0.57631 0.6704
## cvpred           0.57628 0.6703
## ENSG00000142794  0.57233 0.6916
## CV residual     -0.00395 0.0213
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 48 
## Observations in test set: 2 
##                    243   314
## Predicted       0.5763 0.596
## cvpred          0.5761 0.595
## ENSG00000142794 0.5955 0.724
## CV residual     0.0194 0.129
## 
## Sum of squares = 0.02    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 49 
## Observations in test set: 2 
##                    258     360
## Predicted        0.522  0.6074
## cvpred           0.523  0.6083
## ENSG00000142794  0.491  0.5775
## CV residual     -0.032 -0.0309
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 50 
## Observations in test set: 2 
##                      159     294
## Predicted        0.57484  0.6162
## cvpred           0.57482  0.6188
## ENSG00000142794  0.57050  0.5522
## CV residual     -0.00432 -0.0666
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 51 
## Observations in test set: 2 
##                    264    392
## Predicted       0.6067  0.611
## cvpred          0.6065  0.612
## ENSG00000142794 0.6351  0.560
## CV residual     0.0286 -0.052
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 52 
## Observations in test set: 2 
##                      19     344
## Predicted       0.67044  0.6704
## cvpred          0.67060  0.6706
## ENSG00000142794 0.67662  0.6444
## CV residual     0.00603 -0.0262
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 53 
## Observations in test set: 2 
##                        1     69
## Predicted        0.57631 0.5019
## cvpred           0.57621 0.5015
## ENSG00000142794  0.57294 0.5310
## CV residual     -0.00328 0.0295
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 54 
## Observations in test set: 2 
##                      154     217
## Predicted        0.69166  0.5763
## cvpred           0.69175  0.5764
## ENSG00000142794  0.68989  0.5538
## CV residual     -0.00187 -0.0226
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 55 
## Observations in test set: 2 
##                     146    416
## Predicted        0.5763 0.5763
## cvpred           0.5765 0.5765
## ENSG00000142794  0.5166 0.6027
## CV residual     -0.0599 0.0262
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 56 
## Observations in test set: 2 
##                    132    256
## Predicted        0.576 0.5521
## cvpred           0.577 0.5505
## ENSG00000142794  0.477 0.5752
## CV residual     -0.100 0.0247
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 57 
## Observations in test set: 2 
##                     48   128
## Predicted       0.6704  0.67
## cvpred          0.6704  0.67
## ENSG00000142794 0.6915  0.65
## CV residual     0.0211 -0.02
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 58 
## Observations in test set: 2 
##                     35     108
## Predicted        0.586  0.5174
## cvpred           0.587  0.5183
## ENSG00000142794  0.524  0.4915
## CV residual     -0.063 -0.0267
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 59 
## Observations in test set: 2 
##                     101     374
## Predicted        0.6704  0.6704
## cvpred           0.6709  0.6709
## ENSG00000142794  0.6495  0.6370
## CV residual     -0.0214 -0.0338
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 60 
## Observations in test set: 2 
##                        6      357
## Predicted        0.48218  0.58614
## cvpred           0.48228  0.58614
## ENSG00000142794  0.47735  0.58360
## CV residual     -0.00492 -0.00254
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 61 
## Observations in test set: 2 
##                    251     329
## Predicted       0.5861  0.5700
## cvpred          0.5858  0.5703
## ENSG00000142794 0.6279  0.5529
## CV residual     0.0421 -0.0175
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 62 
## Observations in test set: 2 
##                     66   409
## Predicted       0.6704 0.670
## cvpred          0.6698 0.670
## ENSG00000142794 0.7172 0.698
## CV residual     0.0473 0.028
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 63 
## Observations in test set: 2 
##                      84    368
## Predicted        0.6704 0.4920
## cvpred           0.6712 0.4908
## ENSG00000142794  0.6150 0.5846
## CV residual     -0.0562 0.0938
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 64 
## Observations in test set: 2 
##                    389     417
## Predicted       0.5748  0.6704
## cvpred          0.5738  0.6703
## ENSG00000142794 0.6259  0.6587
## CV residual     0.0521 -0.0117
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 65 
## Observations in test set: 2 
##                       46   255
## Predicted       0.586136  0.57
## cvpred          0.586135  0.57
## ENSG00000142794 0.586508  0.55
## CV residual     0.000373 -0.02
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 66 
## Observations in test set: 2 
##                    220     338
## Predicted        0.670  0.5748
## cvpred           0.671  0.5759
## ENSG00000142794  0.637  0.5346
## CV residual     -0.034 -0.0412
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 67 
## Observations in test set: 2 
##                    124   245
## Predicted       0.4822 0.492
## cvpred          0.4815 0.492
## ENSG00000142794 0.5068 0.505
## CV residual     0.0253 0.013
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 68 
## Observations in test set: 2 
##                    196     321
## Predicted       0.5861  0.5700
## cvpred          0.5858  0.5704
## ENSG00000142794 0.6249  0.5516
## CV residual     0.0391 -0.0188
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 69 
## Observations in test set: 2 
##                    414      420
## Predicted        0.670  0.58133
## cvpred           0.671  0.58133
## ENSG00000142794  0.595  0.57877
## CV residual     -0.076 -0.00256
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 70 
## Observations in test set: 2 
##                    253    303
## Predicted        0.570 0.5961
## cvpred           0.570 0.5959
## ENSG00000142794  0.559 0.6181
## CV residual     -0.011 0.0222
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 71 
## Observations in test set: 2 
##                     257     336
## Predicted        0.5217  0.6704
## cvpred           0.5224  0.6706
## ENSG00000142794  0.5011  0.6454
## CV residual     -0.0213 -0.0252
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 72 
## Observations in test set: 2 
##                     40      89
## Predicted       0.6704  0.4920
## cvpred          0.6699  0.4930
## ENSG00000142794 0.7126  0.4169
## CV residual     0.0427 -0.0761
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 73 
## Observations in test set: 2 
##                   194      203
## Predicted       0.670  0.57631
## cvpred          0.670  0.57623
## ENSG00000142794 0.717  0.57179
## CV residual     0.047 -0.00444
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 74 
## Observations in test set: 2 
##                    227    350
## Predicted       0.5763 0.6704
## cvpred          0.5758 0.6699
## ENSG00000142794 0.6505 0.7223
## CV residual     0.0748 0.0524
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 75 
## Observations in test set: 2 
##                     14     288
## Predicted        0.586  0.5418
## cvpred           0.586  0.5449
## ENSG00000142794  0.578  0.4771
## CV residual     -0.008 -0.0678
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 76 
## Observations in test set: 2 
##                    10    379
## Predicted       0.670 0.6704
## cvpred          0.670 0.6696
## ENSG00000142794 0.708 0.7350
## CV residual     0.038 0.0653
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 77 
## Observations in test set: 2 
##                      204    382
## Predicted        0.59754 0.5763
## cvpred           0.59764 0.5762
## ENSG00000142794  0.58780 0.6004
## CV residual     -0.00985 0.0242
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 78 
## Observations in test set: 2 
##                     197    286
## Predicted        0.4822 0.5217
## cvpred           0.4841 0.5205
## ENSG00000142794  0.3944 0.5538
## CV residual     -0.0897 0.0333
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 79 
## Observations in test set: 2 
##                      76     172
## Predicted        0.5861  0.5018
## cvpred           0.5870  0.5038
## ENSG00000142794  0.5832  0.4390
## CV residual     -0.0038 -0.0648
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 80 
## Observations in test set: 2 
##                    182    309
## Predicted        0.502  0.552
## cvpred           0.503  0.558
## ENSG00000142794  0.479  0.452
## CV residual     -0.024 -0.105
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 81 
## Observations in test set: 2 
##                    198    328
## Predicted       0.5763  0.530
## cvpred          0.5761  0.531
## ENSG00000142794 0.6316  0.506
## CV residual     0.0555 -0.025
## 
## Sum of squares = 0    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 82 
## Observations in test set: 2 
##                      39   163
## Predicted        0.6704 0.481
## cvpred           0.6711 0.478
## ENSG00000142794  0.6130 0.593
## CV residual     -0.0581 0.115
## 
## Sum of squares = 0.02    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 83 
## Observations in test set: 2 
##                     170     176
## Predicted        0.6122  0.5748
## cvpred           0.6146  0.5755
## ENSG00000142794  0.5170  0.5537
## CV residual     -0.0976 -0.0218
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 84 
## Observations in test set: 2 
##                      30    218
## Predicted        0.4920 0.5748
## cvpred           0.4930 0.5745
## ENSG00000142794  0.4085 0.5866
## CV residual     -0.0844 0.0121
## 
## Sum of squares = 0.01    Mean square = 0    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 85 
## Observations in test set: 2 
##                     212   252
## Predicted        0.4920 0.492
## cvpred           0.4913 0.491
## ENSG00000142794  0.4511 0.592
## CV residual     -0.0402 0.100
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 2
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 86 
## Observations in test set: 1 
##                    239
## Predicted       0.5558
## cvpred          0.5543
## ENSG00000142794 0.6059
## CV residual     0.0515
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 87 
## Observations in test set: 1 
##                     334
## Predicted       0.57631
## cvpred          0.57626
## ENSG00000142794 0.58576
## CV residual     0.00951
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 88 
## Observations in test set: 1 
##                    119
## Predicted       0.4822
## cvpred          0.4808
## ENSG00000142794 0.5446
## CV residual     0.0637
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 89 
## Observations in test set: 1 
##                     185
## Predicted        0.5763
## cvpred           0.5764
## ENSG00000142794  0.5679
## CV residual     -0.0085
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 90 
## Observations in test set: 1 
##                    190
## Predicted       0.6704
## cvpred          0.6700
## ENSG00000142794 0.7263
## CV residual     0.0563
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 91 
## Observations in test set: 1 
##                      352
## Predicted        0.57631
## cvpred           0.57635
## ENSG00000142794  0.56844
## CV residual     -0.00792
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 92 
## Observations in test set: 1 
##                     188
## Predicted       0.49201
## cvpred          0.49190
## ENSG00000142794 0.50183
## CV residual     0.00993
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 93 
## Observations in test set: 1 
##                    202
## Predicted       0.5763
## cvpred          0.5760
## ENSG00000142794 0.6349
## CV residual     0.0589
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 94 
## Observations in test set: 1 
##                    272
## Predicted       0.5217
## cvpred          0.5204
## ENSG00000142794 0.5568
## CV residual     0.0363
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 95 
## Observations in test set: 1 
##                    136
## Predicted        0.575
## cvpred           0.577
## ENSG00000142794  0.455
## CV residual     -0.122
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 96 
## Observations in test set: 1 
##                    377
## Predicted       0.6704
## cvpred          0.6703
## ENSG00000142794 0.6880
## CV residual     0.0177
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 97 
## Observations in test set: 1 
##                     282
## Predicted        0.6444
## cvpred           0.6449
## ENSG00000142794  0.6151
## CV residual     -0.0299
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 98 
## Observations in test set: 1 
##                    367
## Predicted       0.4920
## cvpred          0.4918
## ENSG00000142794 0.5063
## CV residual     0.0145
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 99 
## Observations in test set: 1 
##                     106
## Predicted        0.5763
## cvpred           0.5766
## ENSG00000142794  0.5321
## CV residual     -0.0444
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 100 
## Observations in test set: 1 
##                    300
## Predicted        0.522
## cvpred           0.528
## ENSG00000142794  0.352
## CV residual     -0.176
## 
## Sum of squares = 0.03    Mean square = 0.03    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 101 
## Observations in test set: 1 
##                    281
## Predicted       0.5700
## cvpred          0.5690
## ENSG00000142794 0.6264
## CV residual     0.0574
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 102 
## Observations in test set: 1 
##                    211
## Predicted       0.6704
## cvpred          0.6699
## ENSG00000142794 0.7341
## CV residual     0.0642
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 103 
## Observations in test set: 1 
##                    165
## Predicted       0.5861
## cvpred          0.5857
## ENSG00000142794 0.6411
## CV residual     0.0554
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 104 
## Observations in test set: 1 
##                    215
## Predicted        0.596
## cvpred           0.597
## ENSG00000142794  0.488
## CV residual     -0.109
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 105 
## Observations in test set: 1 
##                    225
## Predicted       0.6704
## cvpred          0.6701
## ENSG00000142794 0.7132
## CV residual     0.0431
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 106 
## Observations in test set: 1 
##                      42
## Predicted        0.6704
## cvpred           0.6706
## ENSG00000142794  0.6459
## CV residual     -0.0248
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 107 
## Observations in test set: 1 
##                       193
## Predicted        5.76e-01
## cvpred           5.76e-01
## ENSG00000142794  5.76e-01
## CV residual     -8.68e-05
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 108 
## Observations in test set: 1 
##                     45
## Predicted       0.5763
## cvpred          0.5761
## ENSG00000142794 0.6103
## CV residual     0.0341
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 109 
## Observations in test set: 1 
##                      167
## Predicted        0.57631
## cvpred           0.57635
## ENSG00000142794  0.56929
## CV residual     -0.00706
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 110 
## Observations in test set: 1 
##                        2
## Predicted        0.59607
## cvpred           0.59616
## ENSG00000142794  0.58656
## CV residual     -0.00961
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 111 
## Observations in test set: 1 
##                     130
## Predicted        0.6704
## cvpred           0.6707
## ENSG00000142794  0.6329
## CV residual     -0.0378
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 112 
## Observations in test set: 1 
##                       36
## Predicted        0.67044
## cvpred           0.67047
## ENSG00000142794  0.66610
## CV residual     -0.00438
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 113 
## Observations in test set: 1 
##                     332
## Predicted        0.5861
## cvpred           0.5864
## ENSG00000142794  0.5499
## CV residual     -0.0365
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 114 
## Observations in test set: 1 
##                     299
## Predicted       0.61838
## cvpred          0.61790
## ENSG00000142794 0.62633
## CV residual     0.00844
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 115 
## Observations in test set: 1 
##                    402
## Predicted       0.5763
## cvpred          0.5762
## ENSG00000142794 0.5886
## CV residual     0.0123
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 116 
## Observations in test set: 1 
##                    260
## Predicted       0.5217
## cvpred          0.5209
## ENSG00000142794 0.5451
## CV residual     0.0243
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 117 
## Observations in test set: 1 
##                    310
## Predicted       0.6184
## cvpred          0.6160
## ENSG00000142794 0.6579
## CV residual     0.0419
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 118 
## Observations in test set: 1 
##                    396
## Predicted       0.5861
## cvpred          0.5859
## ENSG00000142794 0.6170
## CV residual     0.0311
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 119 
## Observations in test set: 1 
##                    232
## Predicted       0.4920
## cvpred          0.4913
## ENSG00000142794 0.5549
## CV residual     0.0636
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 120 
## Observations in test set: 1 
##                     28
## Predicted        0.586
## cvpred           0.586
## ENSG00000142794  0.555
## CV residual     -0.031
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 121 
## Observations in test set: 1 
##                      13
## Predicted        0.5018
## cvpred           0.5036
## ENSG00000142794  0.4440
## CV residual     -0.0596
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 122 
## Observations in test set: 1 
##                     103
## Predicted        0.5861
## cvpred           0.5863
## ENSG00000142794  0.5638
## CV residual     -0.0225
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 123 
## Observations in test set: 1 
##                     88
## Predicted       0.5763
## cvpred          0.5762
## ENSG00000142794 0.5936
## CV residual     0.0173
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 124 
## Observations in test set: 1 
##                      20
## Predicted        0.5861
## cvpred           0.5865
## ENSG00000142794  0.5398
## CV residual     -0.0467
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 125 
## Observations in test set: 1 
##                   249
## Predicted       0.586
## cvpred          0.585
## ENSG00000142794 0.701
## CV residual     0.116
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 126 
## Observations in test set: 1 
##                     412
## Predicted        0.5861
## cvpred           0.5866
## ENSG00000142794  0.5315
## CV residual     -0.0551
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 127 
## Observations in test set: 1 
##                    238
## Predicted       0.5861
## cvpred          0.5860
## ENSG00000142794 0.6078
## CV residual     0.0218
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 128 
## Observations in test set: 1 
##                     95
## Predicted       0.5763
## cvpred          0.5762
## ENSG00000142794 0.6040
## CV residual     0.0278
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 129 
## Observations in test set: 1 
##                     179
## Predicted       0.67044
## cvpred          0.67041
## ENSG00000142794 0.67475
## CV residual     0.00435
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 130 
## Observations in test set: 1 
##                    415
## Predicted       0.5861
## cvpred          0.5857
## ENSG00000142794 0.6469
## CV residual     0.0613
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 131 
## Observations in test set: 1 
##                    183
## Predicted       0.4807
## cvpred          0.4804
## ENSG00000142794 0.4921
## CV residual     0.0117
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 132 
## Observations in test set: 1 
##                     71
## Predicted       0.5763
## cvpred          0.5760
## ENSG00000142794 0.6238
## CV residual     0.0478
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 133 
## Observations in test set: 1 
##                    222
## Predicted        0.670
## cvpred           0.671
## ENSG00000142794  0.610
## CV residual     -0.061
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 134 
## Observations in test set: 1 
##                     316
## Predicted        0.6184
## cvpred           0.6194
## ENSG00000142794  0.6019
## CV residual     -0.0175
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 135 
## Observations in test set: 1 
##                     139
## Predicted       0.58614
## cvpred          0.58608
## ENSG00000142794 0.59383
## CV residual     0.00776
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 136 
## Observations in test set: 1 
##                     363
## Predicted        0.5018
## cvpred           0.5040
## ENSG00000142794  0.4321
## CV residual     -0.0718
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 137 
## Observations in test set: 1 
##                    411
## Predicted       0.6704
## cvpred          0.6703
## ENSG00000142794 0.6854
## CV residual     0.0151
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 138 
## Observations in test set: 1 
##                    397
## Predicted       0.5763
## cvpred          0.5762
## ENSG00000142794 0.5954
## CV residual     0.0192
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 139 
## Observations in test set: 1 
##                    408
## Predicted       0.5118
## cvpred          0.5114
## ENSG00000142794 0.5327
## CV residual     0.0212
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 140 
## Observations in test set: 1 
##                     100
## Predicted        0.4920
## cvpred           0.4927
## ENSG00000142794  0.4346
## CV residual     -0.0581
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 141 
## Observations in test set: 1 
##                      34
## Predicted        0.6917
## cvpred           0.6929
## ENSG00000142794  0.6434
## CV residual     -0.0496
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 142 
## Observations in test set: 1 
##                     324
## Predicted        0.6162
## cvpred           0.6176
## ENSG00000142794  0.5829
## CV residual     -0.0347
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 143 
## Observations in test set: 1 
##                     134
## Predicted        0.4905
## cvpred           0.4911
## ENSG00000142794  0.4714
## CV residual     -0.0196
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 144 
## Observations in test set: 1 
##                    275
## Predicted        0.590
## cvpred           0.595
## ENSG00000142794  0.508
## CV residual     -0.087
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 145 
## Observations in test set: 1 
##                     175
## Predicted        0.6444
## cvpred           0.6455
## ENSG00000142794  0.5822
## CV residual     -0.0633
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 146 
## Observations in test set: 1 
##                    315
## Predicted       0.5961
## cvpred          0.5956
## ENSG00000142794 0.6481
## CV residual     0.0526
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 147 
## Observations in test set: 1 
##                     152
## Predicted        0.5763
## cvpred           0.5764
## ENSG00000142794  0.5631
## CV residual     -0.0132
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 148 
## Observations in test set: 1 
##                      29
## Predicted        0.4920
## cvpred           0.4922
## ENSG00000142794  0.4737
## CV residual     -0.0185
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 149 
## Observations in test set: 1 
##                    97
## Predicted       0.586
## cvpred          0.585
## ENSG00000142794 0.706
## CV residual     0.121
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 150 
## Observations in test set: 1 
##                     319
## Predicted       0.52023
## cvpred          0.52000
## ENSG00000142794 0.52434
## CV residual     0.00434
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 151 
## Observations in test set: 1 
##                   291
## Predicted       0.616
## cvpred          0.610
## ENSG00000142794 0.777
## CV residual     0.167
## 
## Sum of squares = 0.03    Mean square = 0.03    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 152 
## Observations in test set: 1 
##                   248
## Predicted       0.576
## cvpred          0.576
## ENSG00000142794 0.638
## CV residual     0.062
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 153 
## Observations in test set: 1 
##                   407
## Predicted       0.586
## cvpred          0.586
## ENSG00000142794 0.604
## CV residual     0.018
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 154 
## Observations in test set: 1 
##                     219
## Predicted       0.57631
## cvpred          0.57627
## ENSG00000142794 0.58349
## CV residual     0.00722
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 155 
## Observations in test set: 1 
##                     122
## Predicted       0.57484
## cvpred          0.57463
## ENSG00000142794 0.58434
## CV residual     0.00971
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 156 
## Observations in test set: 1 
##                      82
## Predicted        0.5861
## cvpred           0.5862
## ENSG00000142794  0.5757
## CV residual     -0.0105
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 157 
## Observations in test set: 1 
##                     145
## Predicted        0.6704
## cvpred           0.6705
## ENSG00000142794  0.6588
## CV residual     -0.0117
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 158 
## Observations in test set: 1 
##                     148
## Predicted        0.5763
## cvpred           0.5768
## ENSG00000142794  0.4923
## CV residual     -0.0845
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 159 
## Observations in test set: 1 
##                      81
## Predicted        0.4807
## cvpred           0.4823
## ENSG00000142794  0.4190
## CV residual     -0.0633
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 160 
## Observations in test set: 1 
##                       83
## Predicted        0.67044
## cvpred           0.67051
## ENSG00000142794  0.66164
## CV residual     -0.00887
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 161 
## Observations in test set: 1 
##                     68
## Predicted       0.6704
## cvpred          0.6699
## ENSG00000142794 0.7336
## CV residual     0.0636
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 162 
## Observations in test set: 1 
##                      64
## Predicted        0.5763
## cvpred           0.5766
## ENSG00000142794  0.5284
## CV residual     -0.0482
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 163 
## Observations in test set: 1 
##                       7
## Predicted        0.6115
## cvpred           0.6125
## ENSG00000142794  0.5664
## CV residual     -0.0462
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 164 
## Observations in test set: 1 
##                     369
## Predicted        0.4822
## cvpred           0.4837
## ENSG00000142794  0.4127
## CV residual     -0.0709
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 165 
## Observations in test set: 1 
##                     177
## Predicted        0.6115
## cvpred           0.6126
## ENSG00000142794  0.5635
## CV residual     -0.0491
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 166 
## Observations in test set: 1 
##                     67
## Predicted        0.502
## cvpred           0.503
## ENSG00000142794  0.467
## CV residual     -0.036
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 167 
## Observations in test set: 1 
##                      53
## Predicted        0.6704
## cvpred           0.6707
## ENSG00000142794  0.6370
## CV residual     -0.0337
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 168 
## Observations in test set: 1 
##                      98
## Predicted        0.5748
## cvpred           0.5752
## ENSG00000142794  0.5575
## CV residual     -0.0177
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 169 
## Observations in test set: 1 
##                     142
## Predicted        0.5763
## cvpred           0.5766
## ENSG00000142794  0.5304
## CV residual     -0.0462
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 170 
## Observations in test set: 1 
##                    127
## Predicted       0.4822
## cvpred          0.4814
## ENSG00000142794 0.5200
## CV residual     0.0386
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 171 
## Observations in test set: 1 
##                     72
## Predicted       0.5861
## cvpred          0.5860
## ENSG00000142794 0.6046
## CV residual     0.0186
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 172 
## Observations in test set: 1 
##                      73
## Predicted        0.6917
## cvpred           0.6938
## ENSG00000142794  0.6117
## CV residual     -0.0821
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 173 
## Observations in test set: 1 
##                    375
## Predicted        0.481
## cvpred           0.483
## ENSG00000142794  0.383
## CV residual     -0.100
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 174 
## Observations in test set: 1 
##                     349
## Predicted        0.5763
## cvpred           0.5764
## ENSG00000142794  0.5603
## CV residual     -0.0161
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 175 
## Observations in test set: 1 
##                     366
## Predicted        0.5861
## cvpred           0.5862
## ENSG00000142794  0.5722
## CV residual     -0.0141
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 176 
## Observations in test set: 1 
##                     376
## Predicted        0.5861
## cvpred           0.5863
## ENSG00000142794  0.5613
## CV residual     -0.0251
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 177 
## Observations in test set: 1 
##                   399
## Predicted       0.586
## cvpred          0.585
## ENSG00000142794 0.739
## CV residual     0.154
## 
## Sum of squares = 0.02    Mean square = 0.02    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 178 
## Observations in test set: 1 
##                     50
## Predicted       0.6704
## cvpred          0.6703
## ENSG00000142794 0.6866
## CV residual     0.0163
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 179 
## Observations in test set: 1 
##                       405
## Predicted        0.670439
## cvpred           0.670445
## ENSG00000142794  0.669697
## CV residual     -0.000748
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 180 
## Observations in test set: 1 
##                    140
## Predicted       0.4822
## cvpred          0.4819
## ENSG00000142794 0.4955
## CV residual     0.0136
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 181 
## Observations in test set: 1 
##                      11
## Predicted        0.5975
## cvpred           0.5987
## ENSG00000142794  0.5511
## CV residual     -0.0476
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 182 
## Observations in test set: 1 
##                    295
## Predicted       0.6396
## cvpred          0.6388
## ENSG00000142794 0.6512
## CV residual     0.0124
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 183 
## Observations in test set: 1 
##                     339
## Predicted        0.6704
## cvpred           0.6707
## ENSG00000142794  0.6401
## CV residual     -0.0306
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 184 
## Observations in test set: 1 
##                    133
## Predicted       0.5861
## cvpred          0.5860
## ENSG00000142794 0.6049
## CV residual     0.0189
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 185 
## Observations in test set: 1 
##                       5
## Predicted       0.57631
## cvpred          0.57628
## ENSG00000142794 0.58163
## CV residual     0.00535
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 186 
## Observations in test set: 1 
##                      55
## Predicted       0.57631
## cvpred          0.57630
## ENSG00000142794 0.57828
## CV residual     0.00198
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 187 
## Observations in test set: 1 
##                    137
## Predicted       0.6704
## cvpred          0.6704
## ENSG00000142794 0.6809
## CV residual     0.0106
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 188 
## Observations in test set: 1 
##                      54
## Predicted        0.5763
## cvpred           0.5767
## ENSG00000142794  0.5143
## CV residual     -0.0624
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 189 
## Observations in test set: 1 
##                     343
## Predicted        0.5763
## cvpred           0.5764
## ENSG00000142794  0.5661
## CV residual     -0.0103
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 190 
## Observations in test set: 1 
##                     330
## Predicted        0.5763
## cvpred           0.5767
## ENSG00000142794  0.5018
## CV residual     -0.0749
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 191 
## Observations in test set: 1 
##                     362
## Predicted       0.49201
## cvpred          0.49191
## ENSG00000142794 0.50079
## CV residual     0.00888
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 192 
## Observations in test set: 1 
##                    333
## Predicted        0.575
## cvpred           0.576
## ENSG00000142794  0.544
## CV residual     -0.031
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 193 
## Observations in test set: 1 
##                   388
## Predicted       0.482
## cvpred          0.482
## ENSG00000142794 0.499
## CV residual     0.017
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 194 
## Observations in test set: 1 
##                     284
## Predicted        0.5869
## cvpred           0.5874
## ENSG00000142794  0.5738
## CV residual     -0.0136
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 195 
## Observations in test set: 1 
##                    325
## Predicted       0.5323
## cvpred          0.5312
## ENSG00000142794 0.5647
## CV residual     0.0335
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 196 
## Observations in test set: 1 
##                     161
## Predicted        0.5861
## cvpred           0.5865
## ENSG00000142794  0.5372
## CV residual     -0.0493
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 197 
## Observations in test set: 1 
##                    104
## Predicted       0.4822
## cvpred          0.4819
## ENSG00000142794 0.4970
## CV residual     0.0151
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 198 
## Observations in test set: 1 
##                      85
## Predicted        0.5763
## cvpred           0.5764
## ENSG00000142794  0.5605
## CV residual     -0.0159
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 199 
## Observations in test set: 1 
##                     37
## Predicted       0.4920
## cvpred          0.4917
## ENSG00000142794 0.5185
## CV residual     0.0268
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 200 
## Observations in test set: 1 
##                     18
## Predicted        0.576
## cvpred           0.577
## ENSG00000142794  0.498
## CV residual     -0.079
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 201 
## Observations in test set: 1 
##                     421
## Predicted        0.6704
## cvpred           0.6706
## ENSG00000142794  0.6460
## CV residual     -0.0246
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 202 
## Observations in test set: 1 
##                     144
## Predicted       0.58614
## cvpred          0.58613
## ENSG00000142794 0.58745
## CV residual     0.00133
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 203 
## Observations in test set: 1 
##                     74
## Predicted        0.576
## cvpred           0.577
## ENSG00000142794  0.442
## CV residual     -0.135
## 
## Sum of squares = 0.02    Mean square = 0.02    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 204 
## Observations in test set: 1 
##                    270
## Predicted        0.570
## cvpred           0.572
## ENSG00000142794  0.457
## CV residual     -0.115
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 205 
## Observations in test set: 1 
##                    403
## Predicted       0.5763
## cvpred          0.5762
## ENSG00000142794 0.5888
## CV residual     0.0126
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 206 
## Observations in test set: 1 
##                   189
## Predicted       0.482
## cvpred          0.480
## ENSG00000142794 0.585
## CV residual     0.105
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 207 
## Observations in test set: 1 
##                      41
## Predicted        0.5861
## cvpred           0.5865
## ENSG00000142794  0.5398
## CV residual     -0.0467
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 208 
## Observations in test set: 1 
##                    105
## Predicted        0.575
## cvpred           0.577
## ENSG00000142794  0.468
## CV residual     -0.109
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 209 
## Observations in test set: 1 
##                   406
## Predicted       0.576
## cvpred          0.576
## ENSG00000142794 0.601
## CV residual     0.025
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 210 
## Observations in test set: 1 
##                     92
## Predicted        0.670
## cvpred           0.671
## ENSG00000142794  0.643
## CV residual     -0.028
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 211 
## Observations in test set: 1 
##                    208
## Predicted       0.4920
## cvpred          0.4912
## ENSG00000142794 0.5618
## CV residual     0.0706
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 212 
## Observations in test set: 1 
##                     297
## Predicted        0.6184
## cvpred           0.6193
## ENSG00000142794  0.6037
## CV residual     -0.0156
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 213 
## Observations in test set: 1 
##                    311
## Predicted       0.5902
## cvpred          0.5872
## ENSG00000142794 0.6389
## CV residual     0.0518
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 214 
## Observations in test set: 1 
##                     31
## Predicted        0.555
## cvpred           0.557
## ENSG00000142794  0.469
## CV residual     -0.088
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 215 
## Observations in test set: 1 
##                       12
## Predicted        0.57484
## cvpred           0.57503
## ENSG00000142794  0.56649
## CV residual     -0.00854
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 216 
## Observations in test set: 1 
##                       57
## Predicted        0.67044
## cvpred           0.67048
## ENSG00000142794  0.66533
## CV residual     -0.00515
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 217 
## Observations in test set: 1 
##                     110
## Predicted        0.5861
## cvpred           0.5864
## ENSG00000142794  0.5535
## CV residual     -0.0329
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 218 
## Observations in test set: 1 
##                    341
## Predicted        0.576
## cvpred           0.577
## ENSG00000142794  0.447
## CV residual     -0.130
## 
## Sum of squares = 0.02    Mean square = 0.02    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 219 
## Observations in test set: 1 
##                     364
## Predicted        0.5763
## cvpred           0.5765
## ENSG00000142794  0.5501
## CV residual     -0.0263
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 220 
## Observations in test set: 1 
##                    263
## Predicted       0.5323
## cvpred          0.5310
## ENSG00000142794 0.5693
## CV residual     0.0383
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 221 
## Observations in test set: 1 
##                    210
## Predicted       0.5763
## cvpred          0.5760
## ENSG00000142794 0.6324
## CV residual     0.0564
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 222 
## Observations in test set: 1 
##                      23
## Predicted        0.5748
## cvpred           0.5754
## ENSG00000142794  0.5499
## CV residual     -0.0255
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 223 
## Observations in test set: 1 
##                    266
## Predicted       0.6184
## cvpred          0.6134
## ENSG00000142794 0.7001
## CV residual     0.0867
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 224 
## Observations in test set: 1 
##                    118
## Predicted       0.5763
## cvpred          0.5760
## ENSG00000142794 0.6325
## CV residual     0.0565
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 225 
## Observations in test set: 1 
##                      32
## Predicted        0.5018
## cvpred           0.5036
## ENSG00000142794  0.4433
## CV residual     -0.0603
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 226 
## Observations in test set: 1 
##                      26
## Predicted        0.6704
## cvpred           0.6708
## ENSG00000142794  0.6280
## CV residual     -0.0428
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 227 
## Observations in test set: 1 
##                      213
## Predicted        0.58614
## cvpred           0.58618
## ENSG00000142794  0.58035
## CV residual     -0.00583
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 228 
## Observations in test set: 1 
##                    199
## Predicted        0.576
## cvpred           0.577
## ENSG00000142794  0.391
## CV residual     -0.186
## 
## Sum of squares = 0.03    Mean square = 0.03    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 229 
## Observations in test set: 1 
##                     262
## Predicted        0.5217
## cvpred           0.5221
## ENSG00000142794  0.5097
## CV residual     -0.0124
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 230 
## Observations in test set: 1 
##                    102
## Predicted       0.5018
## cvpred          0.5007
## ENSG00000142794 0.5384
## CV residual     0.0377
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 231 
## Observations in test set: 1 
##                    348
## Predicted       0.5861
## cvpred          0.5859
## ENSG00000142794 0.6136
## CV residual     0.0276
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 232 
## Observations in test set: 1 
##                       390
## Predicted        0.586136
## cvpred           0.586143
## ENSG00000142794  0.585324
## CV residual     -0.000819
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 233 
## Observations in test set: 1 
##                      386
## Predicted        0.58614
## cvpred           0.58620
## ENSG00000142794  0.57862
## CV residual     -0.00758
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 234 
## Observations in test set: 1 
##                    216
## Predicted       0.6704
## cvpred          0.6702
## ENSG00000142794 0.6989
## CV residual     0.0287
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 235 
## Observations in test set: 1 
##                    289
## Predicted       0.5619
## cvpred          0.5566
## ENSG00000142794 0.5911
## CV residual     0.0345
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 236 
## Observations in test set: 1 
##                     150
## Predicted        0.6074
## cvpred           0.6087
## ENSG00000142794  0.5568
## CV residual     -0.0519
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 237 
## Observations in test set: 1 
##                    160
## Predicted       0.6704
## cvpred          0.6704
## ENSG00000142794 0.6808
## CV residual     0.0105
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 238 
## Observations in test set: 1 
##                    322
## Predicted       0.5323
## cvpred          0.5319
## ENSG00000142794 0.5453
## CV residual     0.0134
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 239 
## Observations in test set: 1 
##                    342
## Predicted       0.4822
## cvpred          0.4810
## ENSG00000142794 0.5367
## CV residual     0.0557
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 240 
## Observations in test set: 1 
##                      280
## Predicted        0.53016
## cvpred           0.53063
## ENSG00000142794  0.52184
## CV residual     -0.00879
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 241 
## Observations in test set: 1 
##                    135
## Predicted       0.6704
## cvpred          0.6702
## ENSG00000142794 0.7068
## CV residual     0.0367
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 242 
## Observations in test set: 1 
##                    354
## Predicted        0.670
## cvpred           0.671
## ENSG00000142794  0.624
## CV residual     -0.047
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 243 
## Observations in test set: 1 
##                   241
## Predicted       0.670
## cvpred          0.670
## ENSG00000142794 0.772
## CV residual     0.103
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 244 
## Observations in test set: 1 
##                    395
## Predicted       0.6704
## cvpred          0.6701
## ENSG00000142794 0.7149
## CV residual     0.0448
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 245 
## Observations in test set: 1 
##                     75
## Predicted       0.4920
## cvpred          0.4915
## ENSG00000142794 0.5360
## CV residual     0.0445
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 246 
## Observations in test set: 1 
##                    268
## Predicted       0.5418
## cvpred          0.5380
## ENSG00000142794 0.6214
## CV residual     0.0834
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 247 
## Observations in test set: 1 
##                     209
## Predicted       0.50183
## cvpred          0.50166
## ENSG00000142794 0.50742
## CV residual     0.00575
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 248 
## Observations in test set: 1 
##                     63
## Predicted       0.5763
## cvpred          0.5762
## ENSG00000142794 0.6000
## CV residual     0.0238
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 249 
## Observations in test set: 1 
##                    184
## Predicted       0.5861
## cvpred          0.5860
## ENSG00000142794 0.6061
## CV residual     0.0201
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 250 
## Observations in test set: 1 
##                     111
## Predicted        0.6122
## cvpred           0.6134
## ENSG00000142794  0.5633
## CV residual     -0.0501
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 251 
## Observations in test set: 1 
##                    94
## Predicted       0.586
## cvpred          0.586
## ENSG00000142794 0.623
## CV residual     0.037
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 252 
## Observations in test set: 1 
##                     80
## Predicted       0.5763
## cvpred          0.5762
## ENSG00000142794 0.5941
## CV residual     0.0179
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 253 
## Observations in test set: 1 
##                     418
## Predicted        0.5763
## cvpred           0.5767
## ENSG00000142794  0.5011
## CV residual     -0.0756
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 254 
## Observations in test set: 1 
##                     187
## Predicted        0.5763
## cvpred           0.5765
## ENSG00000142794  0.5512
## CV residual     -0.0253
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 255 
## Observations in test set: 1 
##                     164
## Predicted        0.5748
## cvpred           0.5756
## ENSG00000142794  0.5410
## CV residual     -0.0346
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 256 
## Observations in test set: 1 
##                     173
## Predicted       0.59754
## cvpred          0.59741
## ENSG00000142794 0.60265
## CV residual     0.00524
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 257 
## Observations in test set: 1 
##                      279
## Predicted        0.59607
## cvpred           0.59613
## ENSG00000142794  0.59007
## CV residual     -0.00605
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 258 
## Observations in test set: 1 
##                    178
## Predicted       0.5763
## cvpred          0.5758
## ENSG00000142794 0.6620
## CV residual     0.0862
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 259 
## Observations in test set: 1 
##                     244
## Predicted       0.48071
## cvpred          0.48064
## ENSG00000142794 0.48350
## CV residual     0.00286
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 260 
## Observations in test set: 1 
##                     121
## Predicted        0.4920
## cvpred           0.4923
## ENSG00000142794  0.4654
## CV residual     -0.0269
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 261 
## Observations in test set: 1 
##                   181
## Predicted       0.670
## cvpred          0.670
## ENSG00000142794 0.706
## CV residual     0.036
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 262 
## Observations in test set: 1 
##                    381
## Predicted       0.5763
## cvpred          0.5758
## ENSG00000142794 0.6675
## CV residual     0.0917
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 263 
## Observations in test set: 1 
##                    58
## Predicted       0.670
## cvpred          0.669
## ENSG00000142794 0.804
## CV residual     0.135
## 
## Sum of squares = 0.02    Mean square = 0.02    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 264 
## Observations in test set: 1 
##                      370
## Predicted        0.67044
## cvpred           0.67051
## ENSG00000142794  0.66116
## CV residual     -0.00935
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 265 
## Observations in test set: 1 
##                    353
## Predicted        0.492
## cvpred           0.493
## ENSG00000142794  0.364
## CV residual     -0.130
## 
## Sum of squares = 0.02    Mean square = 0.02    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 266 
## Observations in test set: 1 
##                    234
## Predicted        0.482
## cvpred           0.485
## ENSG00000142794  0.368
## CV residual     -0.116
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 267 
## Observations in test set: 1 
##                    109
## Predicted       0.5763
## cvpred          0.5762
## ENSG00000142794 0.5930
## CV residual     0.0168
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 268 
## Observations in test set: 1 
##                    261
## Predicted       0.5961
## cvpred          0.5953
## ENSG00000142794 0.6765
## CV residual     0.0812
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 269 
## Observations in test set: 1 
##                      78
## Predicted        0.5861
## cvpred           0.5863
## ENSG00000142794  0.5674
## CV residual     -0.0189
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 270 
## Observations in test set: 1 
##                    304
## Predicted       0.5418
## cvpred          0.5408
## ENSG00000142794 0.5622
## CV residual     0.0214
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 271 
## Observations in test set: 1 
##                     326
## Predicted        0.5217
## cvpred           0.5222
## ENSG00000142794  0.5062
## CV residual     -0.0161
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 272 
## Observations in test set: 1 
##                      15
## Predicted        0.6115
## cvpred           0.6128
## ENSG00000142794  0.5570
## CV residual     -0.0558
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 273 
## Observations in test set: 1 
##                     346
## Predicted        0.5558
## cvpred           0.5563
## ENSG00000142794  0.5358
## CV residual     -0.0205
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 274 
## Observations in test set: 1 
##                        8
## Predicted        0.57631
## cvpred           0.57635
## ENSG00000142794  0.56877
## CV residual     -0.00758
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 275 
## Observations in test set: 1 
##                     61
## Predicted        0.576
## cvpred           0.576
## ENSG00000142794  0.565
## CV residual     -0.011
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 276 
## Observations in test set: 1 
##                    400
## Predicted       0.5763
## cvpred          0.5761
## ENSG00000142794 0.6140
## CV residual     0.0379
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 277 
## Observations in test set: 1 
##                     401
## Predicted       0.57631
## cvpred          0.57630
## ENSG00000142794 0.57868
## CV residual     0.00238
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 278 
## Observations in test set: 1 
##                     419
## Predicted       0.67044
## cvpred          0.67042
## ENSG00000142794 0.67264
## CV residual     0.00222
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 279 
## Observations in test set: 1 
##                    372
## Predicted       0.6122
## cvpred          0.6104
## ENSG00000142794 0.6822
## CV residual     0.0718
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 280 
## Observations in test set: 1 
##                     114
## Predicted        0.6704
## cvpred           0.6707
## ENSG00000142794  0.6427
## CV residual     -0.0279
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 281 
## Observations in test set: 1 
##                     247
## Predicted        0.5558
## cvpred           0.5565
## ENSG00000142794  0.5294
## CV residual     -0.0271
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 282 
## Observations in test set: 1 
##                    347
## Predicted        0.586
## cvpred           0.586
## ENSG00000142794  0.574
## CV residual     -0.012
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 283 
## Observations in test set: 1 
##                       9
## Predicted        0.6704
## cvpred           0.6708
## ENSG00000142794  0.6197
## CV residual     -0.0511
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 284 
## Observations in test set: 1 
##                    361
## Predicted       0.5763
## cvpred          0.5762
## ENSG00000142794 0.6037
## CV residual     0.0275
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 285 
## Observations in test set: 1 
##                    221
## Predicted       0.5763
## cvpred          0.5758
## ENSG00000142794 0.6746
## CV residual     0.0988
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 286 
## Observations in test set: 1 
##                      22
## Predicted        0.5861
## cvpred           0.5862
## ENSG00000142794  0.5809
## CV residual     -0.0053
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 287 
## Observations in test set: 1 
##                    287
## Predicted       0.5902
## cvpred          0.5892
## ENSG00000142794 0.6057
## CV residual     0.0165
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 288 
## Observations in test set: 1 
##                     93
## Predicted       0.6704
## cvpred          0.6703
## ENSG00000142794 0.6839
## CV residual     0.0136
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 289 
## Observations in test set: 1 
##                    117
## Predicted        0.670
## cvpred           0.671
## ENSG00000142794  0.562
## CV residual     -0.110
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 290 
## Observations in test set: 1 
##                    107
## Predicted       0.6704
## cvpred          0.6701
## ENSG00000142794 0.7134
## CV residual     0.0433
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 291 
## Observations in test set: 1 
##                      21
## Predicted        0.5018
## cvpred           0.5022
## ENSG00000142794  0.4914
## CV residual     -0.0108
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 292 
## Observations in test set: 1 
##                   276
## Predicted       0.570
## cvpred          0.568
## ENSG00000142794 0.671
## CV residual     0.102
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 293 
## Observations in test set: 1 
##                   371
## Predicted       0.670
## cvpred          0.669
## ENSG00000142794 0.863
## CV residual     0.194
## 
## Sum of squares = 0.04    Mean square = 0.04    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 294 
## Observations in test set: 1 
##                     307
## Predicted        0.5217
## cvpred           0.5239
## ENSG00000142794  0.4604
## CV residual     -0.0635
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 295 
## Observations in test set: 1 
##                    285
## Predicted       0.5700
## cvpred          0.5691
## ENSG00000142794 0.6234
## CV residual     0.0544
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 296 
## Observations in test set: 1 
##                    174
## Predicted       0.5861
## cvpred          0.5860
## ENSG00000142794 0.6026
## CV residual     0.0166
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 297 
## Observations in test set: 1 
##                        17
## Predicted        0.670439
## cvpred           0.670447
## ENSG00000142794  0.669502
## CV residual     -0.000945
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 298 
## Observations in test set: 1 
##                     27
## Predicted       0.4708
## cvpred          0.4697
## ENSG00000142794 0.5039
## CV residual     0.0342
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 299 
## Observations in test set: 1 
##                     383
## Predicted       0.55576
## cvpred          0.55573
## ENSG00000142794 0.55692
## CV residual     0.00118
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 300 
## Observations in test set: 1 
##                    138
## Predicted       0.5763
## cvpred          0.5761
## ENSG00000142794 0.6213
## CV residual     0.0452
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 301 
## Observations in test set: 1 
##                    155
## Predicted       0.5763
## cvpred          0.5761
## ENSG00000142794 0.6166
## CV residual     0.0405
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 302 
## Observations in test set: 1 
##                    129
## Predicted       0.4920
## cvpred          0.4915
## ENSG00000142794 0.5387
## CV residual     0.0473
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 303 
## Observations in test set: 1 
##                     237
## Predicted        0.5763
## cvpred           0.5769
## ENSG00000142794  0.4790
## CV residual     -0.0979
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 304 
## Observations in test set: 1 
##                   290
## Predicted       0.600
## cvpred          0.600
## ENSG00000142794 0.616
## CV residual     0.016
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 305 
## Observations in test set: 1 
##                     156
## Predicted        0.6917
## cvpred           0.6920
## ENSG00000142794  0.6801
## CV residual     -0.0119
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 306 
## Observations in test set: 1 
##                      169
## Predicted        0.69166
## cvpred           0.69186
## ENSG00000142794  0.68434
## CV residual     -0.00752
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 307 
## Observations in test set: 1 
##                    345
## Predicted       0.5763
## cvpred          0.5762
## ENSG00000142794 0.5893
## CV residual     0.0131
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 308 
## Observations in test set: 1 
##                    205
## Predicted       0.5763
## cvpred          0.5762
## ENSG00000142794 0.5912
## CV residual     0.0149
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 309 
## Observations in test set: 1 
##                     38
## Predicted       0.5763
## cvpred          0.5763
## ENSG00000142794 0.5814
## CV residual     0.0051
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 310 
## Observations in test set: 1 
##                    230
## Predicted       0.5018
## cvpred          0.5010
## ENSG00000142794 0.5282
## CV residual     0.0272
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 311 
## Observations in test set: 1 
##                     301
## Predicted        0.5700
## cvpred           0.5712
## ENSG00000142794  0.5027
## CV residual     -0.0685
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 312 
## Observations in test set: 1 
##                    246
## Predicted        0.576
## cvpred           0.577
## ENSG00000142794  0.495
## CV residual     -0.082
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 313 
## Observations in test set: 1 
##                     410
## Predicted       0.67044
## cvpred          0.67040
## ENSG00000142794 0.67504
## CV residual     0.00463
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 314 
## Observations in test set: 1 
##                    240
## Predicted       0.5861
## cvpred          0.5861
## ENSG00000142794 0.5965
## CV residual     0.0105
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 315 
## Observations in test set: 1 
##                      56
## Predicted        0.6704
## cvpred           0.6706
## ENSG00000142794  0.6459
## CV residual     -0.0247
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 316 
## Observations in test set: 1 
##                    147
## Predicted       0.5763
## cvpred          0.5761
## ENSG00000142794 0.6216
## CV residual     0.0456
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 317 
## Observations in test set: 1 
##                     125
## Predicted       0.67044
## cvpred          0.67039
## ENSG00000142794 0.67709
## CV residual     0.00671
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 318 
## Observations in test set: 1 
##                    259
## Predicted       0.5961
## cvpred          0.5956
## ENSG00000142794 0.6458
## CV residual     0.0502
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 319 
## Observations in test set: 1 
##                      91
## Predicted        0.6444
## cvpred           0.6460
## ENSG00000142794  0.5546
## CV residual     -0.0914
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 320 
## Observations in test set: 1 
##                     90
## Predicted       0.4822
## cvpred          0.4809
## ENSG00000142794 0.5424
## CV residual     0.0616
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 321 
## Observations in test set: 1 
##                    49
## Predicted       0.482
## cvpred          0.480
## ENSG00000142794 0.587
## CV residual     0.107
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 322 
## Observations in test set: 1 
##                     70
## Predicted       0.4807
## cvpred          0.4802
## ENSG00000142794 0.4991
## CV residual     0.0188
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 323 
## Observations in test set: 1 
##                     385
## Predicted        0.5861
## cvpred           0.5863
## ENSG00000142794  0.5711
## CV residual     -0.0151
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 324 
## Observations in test set: 1 
##                     59
## Predicted       0.6704
## cvpred          0.6702
## ENSG00000142794 0.7003
## CV residual     0.0301
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 325 
## Observations in test set: 1 
##                     231
## Predicted        0.6704
## cvpred           0.6707
## ENSG00000142794  0.6348
## CV residual     -0.0359
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 326 
## Observations in test set: 1 
##                     43
## Predicted       0.4920
## cvpred          0.4919
## ENSG00000142794 0.4996
## CV residual     0.0077
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 327 
## Observations in test set: 1 
##                     391
## Predicted        0.5763
## cvpred           0.5764
## ENSG00000142794  0.5596
## CV residual     -0.0168
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 328 
## Observations in test set: 1 
##                      149
## Predicted        0.52306
## cvpred           0.52318
## ENSG00000142794  0.52055
## CV residual     -0.00263
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 329 
## Observations in test set: 1 
##                      79
## Predicted        0.5763
## cvpred           0.5766
## ENSG00000142794  0.5232
## CV residual     -0.0534
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 330 
## Observations in test set: 1 
##                      65
## Predicted        0.6122
## cvpred           0.6125
## ENSG00000142794  0.6000
## CV residual     -0.0124
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 331 
## Observations in test set: 1 
##                     312
## Predicted        0.5217
## cvpred           0.5239
## ENSG00000142794  0.4590
## CV residual     -0.0649
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 332 
## Observations in test set: 1 
##                    224
## Predicted       0.4920
## cvpred          0.4912
## ENSG00000142794 0.5658
## CV residual     0.0746
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 333 
## Observations in test set: 1 
##                      51
## Predicted        0.4920
## cvpred           0.4930
## ENSG00000142794  0.4014
## CV residual     -0.0916
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 334 
## Observations in test set: 1 
##                     191
## Predicted       0.49201
## cvpred          0.49198
## ENSG00000142794 0.49404
## CV residual     0.00205
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 335 
## Observations in test set: 1 
##                    317
## Predicted        0.618
## cvpred           0.625
## ENSG00000142794  0.513
## CV residual     -0.112
## 
## Sum of squares = 0.01    Mean square = 0.01    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 336 
## Observations in test set: 1 
##                     87
## Predicted       0.4920
## cvpred          0.4918
## ENSG00000142794 0.5073
## CV residual     0.0154
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## 
## fold 337 
## Observations in test set: 1 
##                      52
## Predicted        0.6704
## cvpred           0.6707
## ENSG00000142794  0.6350
## CV residual     -0.0357
## 
## Sum of squares = 0    Mean square = 0    n = 1
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '26'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '27'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '28'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '29'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '30'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): unimplemented pch value
## '31'
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '256' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '257' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '258' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '259' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '260' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '261' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '262' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '263' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '264' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '265' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '266' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '267' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '268' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '269' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '270' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '271' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '272' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '273' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '274' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '275' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '276' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '277' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '278' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '279' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '280' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '281' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '282' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '283' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '284' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '285' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '286' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '287' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '288' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '289' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '290' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '291' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '292' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '293' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '294' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '295' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '296' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '297' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '298' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '299' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '300' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '301' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '302' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '303' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '304' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '305' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '306' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '307' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '308' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '309' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '310' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '311' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '312' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '313' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '314' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '315' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '316' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '317' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '318' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '319' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '320' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '321' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '322' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '323' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '324' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '325' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '326' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '327' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '328' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '329' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '330' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '331' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '332' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '333' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '334' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '335' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '336' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '337' is
## invalid in this locale
## Warning in plot.xy(xy.coords(x, y), type = type, ...): pch value '338' is
## invalid in this locale

## 
## Overall (Sum over all 1 folds) 
##      ms 
## 0.00282
leave_one_out_mse <- press(model)/(n-p)
# Leave one out cross-validated MSE is 0.00262. This is excellent